mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-28 23:16:01 -04:00
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#/bin/bash
|
|
|
|
destination="tmp2"
|
|
sourcepath="tmp"
|
|
|
|
mkdir -p $destination/script
|
|
|
|
javac -classpath "$destination" -d "$destination" -sourcepath "$sourcepath" -g -deprecation "$1"
|
|
|