Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

appassembler directory referenced by pellet.sh does not exist #42

Open
donpellegrino opened this issue Mar 19, 2018 · 0 comments
Open

Comments

@donpellegrino
Copy link

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 $@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant