diff options
Diffstat (limited to 'development/tig/doinst.sh')
-rw-r--r-- | development/tig/doinst.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/development/tig/doinst.sh b/development/tig/doinst.sh index bcd4e39990dd..3425313d40b3 100644 --- a/development/tig/doinst.sh +++ b/development/tig/doinst.sh @@ -4,7 +4,7 @@ config() { # If there's no config file by that name, mv it over: if [ ! -r $OLD ]; then mv $NEW $OLD - elif [ "$(cat $OLD|md5sum)" = "$(cat $NEW|md5sum)" ]; then + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy rm $NEW fi |