zsh: functions: avoid using aliases when calling rm/mv

fix-ci
bretello 2023-07-08 10:18:04 +02:00
parent f30468da11
commit e08ee08768
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 3 additions and 3 deletions

View File

@ -95,10 +95,10 @@ _z() {
' 2>/dev/null >| "$tempfile"
# do our best to avoid clobbering the datafile in a race condition.
if [ $? -ne 0 -a -f "$datafile" ]; then
env rm -f "$tempfile"
command rm -f "$tempfile"
else
[ "$_Z_OWNER" ] && chown $_Z_OWNER:"$(id -ng $_Z_OWNER)" "$tempfile"
env mv -f "$tempfile" "$datafile" || env rm -f "$tempfile"
[ "$_Z_OWNER" ] && command chown $_Z_OWNER:"$(id -ng $_Z_OWNER)" "$tempfile"
command mv -f "$tempfile" "$datafile" || command rm -f "$tempfile"
fi
# tab completion