You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The top-level pellet.sh script is checking for a "cli/target/appassembler/bin" directory. If it does not find it, it runs "mvn -quiet clean install -DskipTests." However, Maven does not create an appassembler directory. Instead there is a "cli/target/pelletcli/bin" directory that seems to be what is intended. The following diff seems to work:
diff --git a/pellet.sh b/pellet.sh
index 028dbb3..1d665a5 100755
--- a/pellet.sh
+++ b/pellet.sh
@@ -9,9 +9,9 @@
#
# run ./pellet.sh for the usage
-if [ ! -d "cli/target/appassembler/bin" ]; then
+if [ ! -d "cli/target/pelletcli/bin" ]; then
mvn -quiet clean install -DskipTests
fi
-chmod u+x cli/target/appassembler/bin/*
-cli/target/appassembler/bin/pellet $@
+chmod u+x cli/target/pelletcli/bin/*
+cli/target/pelletcli/bin/pellet $@
The text was updated successfully, but these errors were encountered:
The top-level pellet.sh script is checking for a "cli/target/appassembler/bin" directory. If it does not find it, it runs "mvn -quiet clean install -DskipTests." However, Maven does not create an appassembler directory. Instead there is a "cli/target/pelletcli/bin" directory that seems to be what is intended. The following diff seems to work:
The text was updated successfully, but these errors were encountered: