mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
10 lines
258 B
Bash
10 lines
258 B
Bash
#!/bin/bash
|
|
|
|
# Groovy requires JAVA_HOME to be set
|
|
export JAVA_HOME=$PWD/java
|
|
|
|
# GROOVY_HOME needed to get the groovy libs
|
|
export GROOVY_HOME=$PWD/groovy-3.0.7
|
|
|
|
# Add java and groovy binaries to the path
|
|
export PATH=$PWD/java/bin:$PWD/groovy-3.0.7/bin:$PATH
|