about summary refs log tree commit diff
path: root/default.bam
diff options
context:
space:
mode:
Diffstat (limited to 'default.bam')
-rw-r--r--default.bam5
1 files changed, 2 insertions, 3 deletions
diff --git a/default.bam b/default.bam
index 8c8f3fe8..1407348f 100644
--- a/default.bam
+++ b/default.bam
@@ -104,14 +104,13 @@ cmd5_tool = Script("scripts/cmd5.py")
 content_compiler = Script("datasrc/compile.py")
 
 function CHash(output, ...)
-	local inputs = {}
-	local ih = collect_input(arg)
+	local inputs = collect_input(arg)
 	
 	output = Path(output)
 	
 	-- compile all the files
 	local cmd = cmd5_tool .. " "
-	for index, inname in ih do
+	for index, inname in inputs do
 		cmd = cmd .. Path(inname) .. " " 
 	end