10 lines
156 B
Bash
Executable File
10 lines
156 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -e "${HOME}/.m2" ]; then
|
|
echo "Linking m2 from ${HOME}/.m2 to $M2_PATH"
|
|
ln -s "$M2_PATH" ${HOME}/.m2
|
|
fi
|
|
|
|
cd /workspace
|
|
|
|
"$@" |