chore: improve shell scripts

This commit is contained in:
tydeu 2021-07-10 12:36:13 -04:00
parent d1674a6ba0
commit 1ccebe9b89
5 changed files with 20 additions and 5 deletions

1
clean.sh Normal file
View file

@ -0,0 +1 @@
rm -rf build

View file

@ -1,3 +1,3 @@
rm -r a/build
rm -r b/build
rm -r foo/build
rm -rf a/build
rm -rf b/build
rm -rf foo/build

View file

@ -1 +1 @@
rm -r build
rm -rf build

View file

@ -1 +1 @@
rm -r build
rm -rf build

14
examples/test.sh Normal file
View file

@ -0,0 +1,14 @@
echo 'testing hello'
cd hello
./test.sh
cd ..
echo 'testing io'
cd io
./test.sh
cd ..
echo 'testing deps'
cd deps
./test.sh
cd ..