mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 12:23:35 +01:00
13 lines
258 B
Bash
13 lines
258 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
ROOT="/gitiles"
|
||
|
PROPERTIES=
|
||
|
|
||
|
if [ "x$1" != "x" ]; then
|
||
|
PROPERTIES="-Dcom.google.gitiles.configPath=$1"
|
||
|
fi
|
||
|
PROPERTIES="$PROPERTIES -Dcom.google.gitiles.sourcePath=$ROOT"
|
||
|
|
||
|
exec java $PROPERTIES -jar "$ROOT/buck-out/gen/gitiles-dev/dev.jar"
|