Add some helpers to reset a fresh DAO

This commit is contained in:
2019-04-04 19:27:57 +02:00
parent 732dfe7b29
commit db312dafbf
4 changed files with 28 additions and 12 deletions

14
scripts/every-app.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
set -e
rootDir=`pwd`
for dir in ./apps/*/; do
set -x
cd $dir
eval $1
cd $rootDir
set +x
done