summaryrefslogtreecommitdiff
path: root/Functions/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Functions/Misc')
-rw-r--r--Functions/Misc/zrecompile23
1 files changed, 14 insertions, 9 deletions
diff --git a/Functions/Misc/zrecompile b/Functions/Misc/zrecompile
index 325415157..0db27f497 100644
--- a/Functions/Misc/zrecompile
+++ b/Functions/Misc/zrecompile
@@ -128,11 +128,13 @@ if [[ -n $pats ]]; then
# If the file is mapped, it might be mapped right now, so keep the
# old file by renaming it.
- if { [[ ! -f $zwc ]] || mv $zwc ${zwc}.old } &&
- zcompile $map $tmp $zwc $files 2> /dev/null; then
- [[ -z $quiet ]] && print succeeded
- else
- [[ -z $quiet ]] && print failed
+ if [[ -z "$quiet" ]] &&
+ { [[ ! -f $zwc ]] || mv $zwc ${zwc}.old } &&
+ zcompile $map $tmp $zwc $files; then
+ print succeeded
+ elif ! { { [[ ! -f $zwc ]] || mv $zwc ${zwc}.old } &&
+ zcompile $map $tmp $zwc $files 2> /dev/null } then
+ [[ -z $quiet ]] && print "re-compiling ${zwc}: failed"
ret=1
fi
fi
@@ -230,10 +232,13 @@ for zwc; do
# If the file is mapped, it might be mapped right now, so keep the
# old file by renaming it.
- if mv $zwc ${zwc}.old && zcompile $map $zwc $files 2> /dev/null; then
- [[ -z $quiet ]] && print $mesg
- else
- [[ -z $quiet ]] && print failed
+ if [[ -z "$quiet" ]] &&
+ mv $zwc ${zwc}.old &&
+ zcompile $map $zwc $files; then
+ print $mesg
+ elif ! { mv $zwc ${zwc}.old &&
+ zcompile $map $zwc $files 2> /dev/null } then
+ [[ -z $quiet ]] && print "re-compiling ${zwc}: failed"
ret=1
fi
fi