Created
January 10, 2018 10:00
-
-
Save onjin/1b78a9b7b13043646c031ffa986e889f to your computer and use it in GitHub Desktop.
bash script to run pony language compiler using docker
This file contains 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 | |
# run pony compiller using docker | |
# requires realpath programm - apt-get install realpath | |
path=$(realpath "$@") | |
/usr/bin/docker run --rm -v ${path}:/src/main ponylang/ponyc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment