Created
July 1, 2014 02:27
-
-
Save theRemix/312c9dceef972e003ae6 to your computer and use it in GitHub Desktop.
Haxe version manager (ghetto)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "Current Version is `/usr/bin/haxe -help | sed -n '1p'`" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo rm /usr/lib/haxe | |
| sudo ln -sf /usr/lib/haxe-2.10 /usr/lib/haxe | |
| echo "Haxe version set to `/usr/bin/haxe -help | sed -n '1p'`" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo rm /usr/lib/haxe | |
| sudo ln -sf /usr/lib/haxe-3.1.3 /usr/lib/haxe | |
| echo "Haxe version set to `/usr/bin/haxe -help | sed -n '1p'`" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment