Fix syntax error caused by extra spacing
Bash variable assignment requires the = operator to immediately
follow the variable name, otherwise it will result in a syntax
error. This commit fixes a syntax error of that nature that would
prevent the preservation of atime and mtime of the enclosing
directory of a file that was linked to an identical file.
This commit is contained in:
@ -64,7 +64,7 @@ fi
|
||||
############################################################################
|
||||
## MAKE A TEMPORARY FILE FOR PRESERVING TIMESTAMPS ##
|
||||
############################################################################
|
||||
TEMPFILE = $(mktemp)
|
||||
TEMPFILE=$(mktemp)
|
||||
trap "rm -f ${TEMPFILE}" EXIT
|
||||
|
||||
############################################################################
|
||||
|
||||
Reference in New Issue
Block a user