appmake 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/appmake.rb +1 -1
- metadata +1 -1
data/lib/appmake.rb
CHANGED
@@ -23,7 +23,7 @@ class Appmake
|
|
23
23
|
def self.watch
|
24
24
|
tpl_callback = Proc.new do |modified, added, removed|
|
25
25
|
puts "=> rebuilding TPL"
|
26
|
-
system("node -e #{COMPILE_TEMPLATES_JS}")
|
26
|
+
system("node -e \"#{COMPILE_TEMPLATES_JS}\"")
|
27
27
|
end
|
28
28
|
|
29
29
|
tpl_listener = Listen.to "tpl", :filter => /\.html$/
|