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:
Lee Ockert
2023-10-23 12:00:43 -04:00
parent 90e61f7094
commit 717c700fac

View File

@ -64,7 +64,7 @@ fi
############################################################################ ############################################################################
## MAKE A TEMPORARY FILE FOR PRESERVING TIMESTAMPS ## ## MAKE A TEMPORARY FILE FOR PRESERVING TIMESTAMPS ##
############################################################################ ############################################################################
TEMPFILE = $(mktemp) TEMPFILE=$(mktemp)
trap "rm -f ${TEMPFILE}" EXIT trap "rm -f ${TEMPFILE}" EXIT
############################################################################ ############################################################################