Skip to content

Commit

Permalink
supress unwanted output during setup
Browse files Browse the repository at this point in the history
  • Loading branch information
daltyboy11 committed Apr 10, 2020
1 parent 4cb42bb commit c755925
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vocab/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,14 @@ if ! [ -x "$(command -v python3)" ]; then
fi

# Setup the jar
sbt assembly
echo assembling jar...
sbt assembly &>/dev/null

# Move everyting to /usr/bin
echo adding vocab to /usr/local/bin
cp target/scala-2.13/vocab-assembly*.jar /usr/local/bin/vocab.jar
cp vocab.py /usr/local/bin/vocab
chmod +x /usr/local/bin/vocab

# done! :)
echo vocab is ready for use!

0 comments on commit c755925

Please sign in to comment.