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)
|
||||
cd $TOOL
|
||||
|
||||
[ -x ./uninstall ] && ./uninstall
|
||||
git clean -dffx .
|
||||
tool_log "starting uninstall, logging to $PWD/uninstall.log"
|
||||
[ -x ./uninstall ] && ./uninstall >> uninstall.log 2>&1
|
||||
git clean -dffx . >/dev/null 2>&1
|
||||
tool_log "uninstall finished"
|
||||
|
||||
cd ..
|
||||
|
|
Loading…
Reference in a new issue