6 lines
186 B
Bash
6 lines
186 B
Bash
#!/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_*;
|