aboutsummaryrefslogtreecommitdiffstats
path: root/watchr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'watchr.rb')
-rw-r--r--watchr.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/watchr.rb b/watchr.rb
index 25aaa01c..c746d7bb 100644
--- a/watchr.rb
+++ b/watchr.rb
@@ -4,6 +4,5 @@
# note: make sure that you have jstd server running (server.sh) and a browser captured
watch( '(src|test|example)/' ) do
- %x{ echo "\n\ntest run started @ `date`" > logs/jstd.log; ./test.sh &> logs/jstd.log & }
- %x{ echo "\n\nlint started @ `date`" > logs/lint.log; rake lint &> logs/lint.log & }
+ system 'echo "\n\ntest run started @ `date`"; ./test.sh '
end