We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Doing another haxelib setup and then moving the lib folder will break haxelib since the path to the "real" haxelib is hardcoded.
haxelib setup
#!/bin/sh OLDCWD=`pwd` cd /hardcoded/path/to/haxelib/haxelib_client/3,2,0-rc,3/src/ exec haxe -D haxelib_client=3.2.0-rc.3 --run tools.haxelib.Main -cwd $OLDCWD $@
changing the cd to
cd $(cat ~/.haxelib)/haxelib_client/3,2,0-rc,3/src/
would prevent that.
The text was updated successfully, but these errors were encountered:
That might do the trick, although you cannot really assume that ~/.haxelib is the right place to look for the path.
~/.haxelib
@jasononeil Maybe we could use something more basic, like the path where haxe itself located?
Sorry, something went wrong.
@back2dos The error happened to me because I moved the lib folder away from where haxe is (so I can switch haxe version more easily)
"fixed" by #291
jasononeil
No branches or pull requests
Doing another
haxelib setup
and then moving the lib folder will break haxelib since the path to the "real" haxelib is hardcoded.changing the cd to
would prevent that.
The text was updated successfully, but these errors were encountered: