aboutsummaryrefslogtreecommitdiff
path: root/link_versions.sh
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-20 00:16:23 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-20 00:16:23 -0400
commit950c8a63be4cdb6bcbcc6c380d59238a36a3b932 (patch)
tree1da8e121097f95766a51dd88bf1a6554694259a2 /link_versions.sh
parent9f7ceac91378c30a9c1eddef8d1351583940e3b7 (diff)
Remove -v flag from `ln` for compatibility
Diffstat (limited to 'link_versions.sh')
-rw-r--r--link_versions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/link_versions.sh b/link_versions.sh
index 3fadbe4f..47a70490 100644
--- a/link_versions.sh
+++ b/link_versions.sh
@@ -10,8 +10,8 @@ commands="$(ls | awk -F '[v.]' '
}
END {
for (major in max_minor) {
- if (max_major > 0) print "ln -fvs tomo_v"major"."max_minor[major]" tomo"major
+ if (max_major > 0) print "ln -fs tomo_v"major"."max_minor[major]" tomo"major
}
- if (link_tomo) print "ln -fvs tomo_v"max_major"."max_minor[max_major]" tomo"
+ if (link_tomo) print "ln -fs tomo_v"max_major"."max_minor[max_major]" tomo"
}')"
eval "$commands"