Differences From 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]
To Artifact [92c5183668]:
- Executable file clean.sh — part of check-in [34059b4bf6] at 2019-08-21 23:35:09 on branch trunk — replace `.` with `source` in shell scripts for compatibility; change `sh` shebangs to use bash instead (user: lexi, size: 147) [annotate] [blame] [check-ins using]
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
|
| |
1 2 3 4 5 6 7 8 9 |
#!/usr/bin/env bash
to=${to:-out}
gen=${gen:-gen}
source global/common.sh
say "cleaning libk build artifacts"
report rm -r $to
report rm -r $gen
|