Differences From Artifact [67375a0380]:
- Executable file clean.sh — part of check-in [34c625a47b] at 2019-08-19 05:42:02 on branch trunk — switch over to new build mechanism and formally deprecate makefiles (user: lexi, size: 138) [annotate] [blame] [check-ins using]
To Artifact [da20a1a7ee]:
- Executable file clean.sh — part of check-in [b590aba21d] at 2019-08-21 01:20:41 on branch trunk — rename $out build var to $to for nixos compat; refactor announce command to choose a color automatically instead of forcing it to be specified on every command line (user: lexi, size: 142) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 |
#!/usr/bin/env bash out=${out:-out} gen=${gen:-gen} . global/common.sh say "cleaning libk build artifacts" set -x rm -r $out rm -r $gen |
| < | | |
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/env bash to=${to:-out} gen=${gen:-gen} . global/common.sh say "cleaning libk build artifacts" report rm -r $to report rm -r $gen |