diff options
author | Sylvestre Ledru <sylvestre.ledru@scilab-enterprises.com> | 2013-05-03 16:54:19 +0200 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-03 13:18:26 -0700 |
commit | cac435e8aad60b535d3abdc648f97837a037a573 (patch) | |
tree | e1ea3da9b24b7d4887e82942987a167004d1ef8f /src/relooper | |
parent | 155342908c2dd94e433bd043367efc9799296420 (diff) |
Provide the right declarations for the scripts to be executed correctly
Diffstat (limited to 'src/relooper')
-rwxr-xr-x | src/relooper/doit.sh | 2 | ||||
-rwxr-xr-x | src/relooper/testit.sh | 2 | ||||
-rwxr-xr-x | src/relooper/updateit.sh | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/src/relooper/doit.sh b/src/relooper/doit.sh index bf2683d5..5a55dd79 100755 --- a/src/relooper/doit.sh +++ b/src/relooper/doit.sh @@ -1,3 +1,5 @@ +#!/bin/sh + echo "relooper" g++ Relooper.cpp -c -g g++ Relooper.cpp -c -g -DDEBUG -o RelooperDebug.o diff --git a/src/relooper/testit.sh b/src/relooper/testit.sh index 28413c0d..61e1a2fb 100755 --- a/src/relooper/testit.sh +++ b/src/relooper/testit.sh @@ -1,3 +1,5 @@ +#!/bin/sh + echo "test" ./test &> test.out diff -U 5 test.txt test.out diff --git a/src/relooper/updateit.sh b/src/relooper/updateit.sh index 91ccd3ab..8c434753 100755 --- a/src/relooper/updateit.sh +++ b/src/relooper/updateit.sh @@ -1,3 +1,4 @@ +#!/bin/sh ./test &> test.txt ./test2 &> test2.txt ./test3 &> test3.txt |