Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 941e15389f | |||
| 9addfe51d7 |
@@ -0,0 +1,5 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
# when executed as executable file in "git for windows" bash some things won't work, so always run with prefixed command
|
||||
rm -rf /tmp/zeitlaeufer_*;
|
||||
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
# when executed as executable file in "git for windows" bash some things won't work, so always run with prefixed command
|
||||
if [[ $# -ge 1 && $1 == "clean" ]]; then
|
||||
rm -r target/;
|
||||
fi
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
# when executed as executable file in "git for windows" bash some things won't work, so always run with prefixed command
|
||||
if [[ ! -e dist ]]; then
|
||||
mkdir dist;
|
||||
fi
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
set -uo pipefail
|
||||
|
||||
# when executed as executable file in "git for windows" bash some things won't work, so always run with prefixed command
|
||||
originDir=$(pwd);
|
||||
cd ~/zeitlaeufer/;
|
||||
tmpDir="/tmp/zeitlaeufer_$RANDOM";
|
||||
|
||||
Reference in New Issue
Block a user