diff options
author | Matteo Bernardini <ponce@slackbuilds.org> | 2022-02-16 21:10:01 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-17 12:59:53 +0700 |
commit | bac2121e138d3bc6d1a352fe048782eec495261b (patch) | |
tree | b2ee901e1cfff018c07c2190f4f6294bfd112b8e /development/fsharp/doinst.sh | |
parent | 8b24698c16df13bfbbf9a77ad9c55c028357e073 (diff) |
development/fsharp: Removed (abandoned).
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/fsharp/doinst.sh')
-rw-r--r-- | development/fsharp/doinst.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/development/fsharp/doinst.sh b/development/fsharp/doinst.sh deleted file mode 100644 index 92eb273a89..0000000000 --- a/development/fsharp/doinst.sh +++ /dev/null @@ -1,12 +0,0 @@ -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... -} |