diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-21 03:00:49 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-10-21 03:00:49 -0400 |
commit | ab69b8e9b4666ba2ad89a27b07b6944feb82eadb (patch) | |
tree | 93ed01061806f33d29e6e4f447412bbe75244fe5 /build-aux/write-atomic | |
parent | 7af3811df0e4d8707d8218361dd305f42df62be2 (diff) |
(systemd) wip
Diffstat (limited to 'build-aux/write-atomic')
-rwxr-xr-x | build-aux/write-atomic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/write-atomic b/build-aux/write-atomic index efb2551..ab2a417 100755 --- a/build-aux/write-atomic +++ b/build-aux/write-atomic @@ -15,7 +15,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. outfile=$1 -tmpfile="$(dirname "$outfile")/.tmp${outfile##*/}" +tmpfile="$(dirname "$outfile")/.tmp.${outfile##*/}.tmp" cat > "$tmpfile" || { r=$?; rm -f "$tmpfile"; exit $r; } mv -f "$tmpfile" "$outfile" |