Last active
May 4, 2018 14:54
-
-
Save back2dos/3178cff88198c978e3693eb4abea07a5 to your computer and use it in GitHub Desktop.
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
{ | |
"name": "nemo", | |
"version": "0.0.42", | |
"postInstall": "haxe -lib nemo --run PrintCwd POST_INSTALL", | |
"postDownload": "haxe --run PrintCwd POST_DOWNLOAD" | |
} |
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
class PrintCwd { | |
static function main() | |
Sys.println('cwd: ' + Sys.getCwd() + ' args: ' + Sys.args()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment