Script language
For keep it simple, Free Commit doesn't include a specific language driver.
So, Bash is the default language for scripting.
You don't like bash ? 🤮
Not a problem, your base script must be written in Bash, but you are free, it's your own container.
Want to write python ?
#!/bin/bash
python test.py
Want to write php ?
#!/bin/bash
php version.php
Want to write java ?
#!/bin/bash
javac Build.java && java Build
You see ? You do what you want, because you are at home
Last updated