diff options
author | Joey Hess <joey@kitenet.net> | 2013-06-17 12:04:08 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-06-17 12:04:08 -0400 |
commit | 8022bd00fea31a424fbf1623afe31daae4bb63ea (patch) | |
tree | 4a64b0ab56c00fc4ed70dc5a68326b00db099042 /uninit.d/50vcs-uninit | |
parent | 819d09a251de910dfa1afc421d5d8d57c3f5fcb0 (diff) |
fix syntax error lintian found
Diffstat (limited to 'uninit.d/50vcs-uninit')
-rwxr-xr-x | uninit.d/50vcs-uninit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uninit.d/50vcs-uninit b/uninit.d/50vcs-uninit index 93f5df7..b61abfd 100755 --- a/uninit.d/50vcs-uninit +++ b/uninit.d/50vcs-uninit @@ -21,7 +21,7 @@ if ! grep -q "$managed_by_etckeeper" "$file"; then exit 0 else realfile="$file" - if which tempfile >/dev/null 2>&1 || type -p tempfile >/dev/null 2>&1;; then + if which tempfile >/dev/null 2>&1 || type -p tempfile >/dev/null 2>&1; then tempfile="tempfile" elif which mktemp >/dev/null 2>&1 || type -p mktemp >/dev/null 2>&1; then tempfile="mktemp" |