mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
Exit when a mv or cp fails (Sjoerd Mullender).
This commit is contained in:
parent
e6e8cdc748
commit
54047c84d1
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ dsttmp=$dstdir/#inst.$$#
|
|||
|
||||
# Move or copy the file name to the temp name
|
||||
|
||||
$doit $instcmd $src $dsttmp
|
||||
$doit $instcmd $src $dsttmp || exit $?
|
||||
|
||||
# and set any options; do chmod last to preserve setuid bits
|
||||
|
||||
|
@ -114,7 +114,7 @@ if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi
|
|||
# Now rename the file to the real destination.
|
||||
|
||||
$doit $rmcmd $dst
|
||||
$doit $mvcmd $dsttmp $dst
|
||||
$doit $mvcmd $dsttmp $dst || exit $?
|
||||
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue