Skip to content

Commit

Permalink
Merge pull request c0f3#3 from alexmbird/master
Browse files Browse the repository at this point in the history
Fix wrapper script so it's callable from anywhere
  • Loading branch information
ctapmex authored Sep 4, 2016
2 parents f6da293 + c967816 commit a6f8460
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/resources/bin/zktreeutil.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash

echo Uadmin
#echo Uadmin

cp=".:../lib/*"
java -cp $cp com.dobrunov.zktreeutil.zkTreeUtilMain $@
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cp="$DIR/../lib/*"
java -cp "$cp" com.dobrunov.zktreeutil.zkTreeUtilMain $@

0 comments on commit a6f8460

Please sign in to comment.