Skip to content

Commit

Permalink
add --no-print-directory option to make in releaser.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles-Antoine Mathieu committed Oct 27, 2020
1 parent 1dcd80a commit aecbdc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions releaser/releaser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ do

echo "################################################"
echo "Building Plik client for $TARGET to $CLIENT_PATH"
make client
make --no-print-directory client

mkdir -p "$CLIENT_DIR"
cp client/plik "$CLIENT_PATH"
Expand All @@ -74,7 +74,7 @@ mkdir -p releases/archives
function build_release {
echo "#################################"
echo "Building server for $GOOS $GOARCH"
make server
make --no-print-directory server

RELEASE="plik-$RELEASE_VERSION-$GOOS-$GOARCH"
RELEASE_DIR="releases/$RELEASE"
Expand Down

0 comments on commit aecbdc8

Please sign in to comment.