File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ if [ -d $3 ]; then
4
+ echo " $3 /bin/builder build TorgoInstallBuilder.xml windows --setvars project.outputDirectory=$1 project.version=$2 "
5
+ $3 /bin/builder build TorgoInstallBuilder.xml windows --setvars project.outputDirectory=$1 project.version=$2
6
+ elif [ -d ' /opt/installbuilder-8.6.0' ]; then
7
+ echo " /opt/installbuilder-8.6.0/bin/builder build TorgoInstallBuilder.xml windows --setvars project.outputDirectory=$1 project.version=$2 "
8
+ /opt/installbuilder-8.6.0/bin/builder build TorgoInstallBuilder.xml windows --setvars project.outputDirectory=$1 project.version=$2
9
+ else
10
+ echo ' /opt/installbuilder-8.6.0 not found'
11
+ fi
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ if [ -d $2 ]; then
4
+ echo " java -jar $2 /launch4j.jar $1 "
5
+ java -jar $2 /launch4j.jar $1
6
+ elif [ -d ' /opt/launch4j/' ]; then
7
+ echo " java -jar /opt/launch4j/launch4j.jar $1 "
8
+ java -jar /opt/launch4j/launch4j.jar $1
9
+ else
10
+ echo " /opt/launch4j not found"
11
+ fi
You can’t perform that action at this time.
0 commit comments