diff options
Diffstat (limited to 'academic/solfege/doinst.sh')
-rw-r--r-- | academic/solfege/doinst.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/academic/solfege/doinst.sh b/academic/solfege/doinst.sh index e2c5000afb7c..38bba88fdaf4 100644 --- a/academic/solfege/doinst.sh +++ b/academic/solfege/doinst.sh @@ -1,14 +1,12 @@ config() { NEW="$1" OLD="$(dirname $NEW)/$(basename $NEW .new)" - # 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 - # toss the redundant copy rm $NEW fi - # Otherwise, we leave the .new copy for the admin to consider... } config etc/solfege.new |