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 1 #!/usr/bin/env bash 2 -out=${out:-out} 2 +to=${to:-out} 3 3 gen=${gen:-gen} 4 4 . global/common.sh 5 5 6 6 say "cleaning libk build artifacts" 7 7 8 -set -x 9 -rm -r $out 10 -rm -r $gen 8 +report rm -r $to 9 +report rm -r $gen