Skip to content

Commit

Permalink
Merge pull request #67 from Kotlin/khud/0.3-fixes
Browse files Browse the repository at this point in the history
Fix #61
  • Loading branch information
khud authored Apr 3, 2021
2 parents b3f53bf + ab022e3 commit f1d7cf3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/ki.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

set SCRIPT_PATH=%~dp0
set KI_SHELL=%SCRIPT_PATH%\..\lib\ki-shell-*.jar
set KI_SHELL=%SCRIPT_PATH%\..\lib\ki-shell.jar

java -jar %KI_SHELL% %*
2 changes: 1 addition & 1 deletion bin/ki.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
KI_SHELL=$SCRIPT_DIR/../lib/ki-shell-*.jar
KI_SHELL=$SCRIPT_DIR/../lib/ki-shell.jar

java -jar ${KI_SHELL} $@
2 changes: 1 addition & 1 deletion ki-shell/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
<artifactSet>
<includes />
</artifactSet>
<outputFile>${project.parent.basedir}/lib/${project.artifactId}-${project.version}.jar</outputFile>
<outputFile>${project.parent.basedir}/lib/${project.artifactId}.jar</outputFile>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion ki-shell/src/assembly/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<outputDirectory>bin</outputDirectory>
</file>
<file>
<source>lib/${project.artifactId}-${project.version}.jar</source>
<source>lib/${project.artifactId}.jar</source>
<outputDirectory>lib</outputDirectory>
</file>
</files>
Expand Down

0 comments on commit f1d7cf3

Please sign in to comment.