mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 14:02:33 +00:00
pipe ./uninstall output to uninstall.log
This commit is contained in:
parent
21876d00d7
commit
b2288c946d
1 changed files with 3 additions and 2 deletions
|
@ -235,8 +235,9 @@ case $ACTION in
|
||||||
uninstall)
|
uninstall)
|
||||||
cd $TOOL
|
cd $TOOL
|
||||||
|
|
||||||
[ -x ./uninstall ] && ./uninstall
|
tool_log "starting uninstall, logging to $PWD/uninstall.log"
|
||||||
git clean -dffx .
|
[ -x ./uninstall ] && ./uninstall >> uninstall.log 2>&1
|
||||||
|
git clean -dffx . >/dev/null 2>&1
|
||||||
tool_log "uninstall finished"
|
tool_log "uninstall finished"
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Reference in a new issue