summarylogtreecommitdiffstats
path: root/asciidocfx
diff options
context:
space:
mode:
authorCorey Richardson2016-10-11 13:50:11 -0400
committerCorey Richardson2016-10-11 13:51:13 -0400
commit310a272a8bfae968f47ac3fe4af855d8f1ab6b3e (patch)
treee7904734eaeeb32bb5381f1f6e83f0cfefa60492 /asciidocfx
downloadaur-310a272a8bfae968f47ac3fe4af855d8f1ab6b3e.tar.gz
Initial commit: v1.5.0
Diffstat (limited to 'asciidocfx')
-rwxr-xr-xasciidocfx14
1 files changed, 14 insertions, 0 deletions
diff --git a/asciidocfx b/asciidocfx
new file mode 100755
index 000000000000..c95c02e21424
--- /dev/null
+++ b/asciidocfx
@@ -0,0 +1,14 @@
+#!/bin/sh
+BASEDIR=/usr/share/java/asciidocfx
+for name in $BASEDIR/lib/*.jar; do
+ CP=$CP:$name
+done
+
+exec /usr/bin/java -cp $CP -Duser.language=en -Duser.country=US -XX:+UseG1GC \
+ -Dapp.name="asciidocfx" \
+ -Dapp.pid="$$" \
+ -Dapp.repo="$BASEDIR/lib" \
+ -Dapp.home="$BASEDIR" \
+ -Dbasedir="$BASEDIR" \
+ com.kodcu.boot.AppStarter \
+ "$@" \ No newline at end of file