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
class Symlink { static function main() { trace(sys.FileSystem.fullPath("test-symlink")); } }
$ pwd /some/place $ mkdir example-dir $ ln -s example-dir test-symlink $ haxe --main Symlink --cs out $ mono --version Mono JIT compiler version 3.2.5 (tarball Mon Dec 9 11:46:29 PST 2013) ... $ mono out/bin/Symlink.exe /some/place/test-symlink $ haxe --main Symlink --lua out.lua $ lua out.lua /some/place/test-symlink
(Expected output would be /some/place/example-dir)
/some/place/example-dir
Once fixed:
tests/sys/src/TestUnicode.hx
The text was updated successfully, but these errors were encountered:
I have a fix checked in for this, but having some difficulty running sys tests right now.
Sorry, something went wrong.
No branches or pull requests
$ pwd /some/place $ mkdir example-dir $ ln -s example-dir test-symlink $ haxe --main Symlink --cs out $ mono --version Mono JIT compiler version 3.2.5 (tarball Mon Dec 9 11:46:29 PST 2013) ... $ mono out/bin/Symlink.exe /some/place/test-symlink $ haxe --main Symlink --lua out.lua $ lua out.lua /some/place/test-symlink
(Expected output would be
/some/place/example-dir
)Once fixed:
tests/sys/src/TestUnicode.hx
The text was updated successfully, but these errors were encountered: