Compare commits

..

1 Commits

Author SHA1 Message Date
940b7b3efe Fixes fish version check 2025-05-13 16:14:17 +02:00
2 changed files with 1 additions and 2 deletions

1
.emacs
View File

@@ -660,7 +660,6 @@
(concat "-imp." ext)
(concat "-impl." ext)
".cpp"
".c"
)))
)
(when (member ext '("c" "cc" "cpp"))

View File

@@ -163,7 +163,7 @@ ${current_version}
3.4.0
EOF
)
if [ $(echo "${current_version_test}" | sort -n | head -1) != "3.4.0" ]
if [ $(echo "${current_version_test}" | sort | head -1) != "3.4.0" ]
then
echo "Wrong version of fish ${current_version}"
fish_good=1