-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-N
/ --no-config option
in check_fish_version
raises error in older Fish versions (checked with 3.1.2)
#245
Comments
@necromuralist: Thank you for raising this topic. Another workaround could be to install an older VirtualFish version: @melomac: It appears the fix you suggested has had the side effect of raising the minimum required Fish version, which was not clear at the time we made that change. It would seem we can either (1) find a way to handle invisible characters some other way (without the |
I am sorry the proposed fix for #238 raised different concerns 🙏 And I don't mind if we revert the What about running Example with ~> fish --version | xxd -p
666973682c2076657273696f6e20332e372e310a
~> fish --version
fish, version 3.7.1
~> fish -c 'echo $version' | xxd -p
0d1b5b33671b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b48202020201b48202020201b48202020201b
48202020201b48202020201b480d332e372e310a By the way, thanks again for virtualfish 🤘 |
Fixed via #247 and released as VirtualFish 2.5.9. |
-N
/ --no-config option
in check_fish_version
raises error in older Fish versions (checked with 3.1.2)
Issue
I ran
vf install
on an old raspberry pi and got this traceback:The fix Handle invisible characters when checking Fish version introduced the
-N
flag to the version check (to address check_fish_version() and tabs in fish configuration) but this flag doesn't exist in earlier versions of fish.If I'm reading the fish changelog right they introduced that flag in version 3.3.0, which is old, but not as old as the minimum version being checked for.
This is, admittedly, a really old version of fish, so I don't know if keeping virtualfish compatible that far back is in the plan, but I was able to install virtualfish by starting a python prompt and running the
install
function by itself and so far it seems to work fine, other than this.The text was updated successfully, but these errors were encountered: