Skip to content

Commit

Permalink
add --ignore-deps to release script
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Jan 10, 2017
1 parent 2dc2bc5 commit 8970161
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion release
Expand Up @@ -23,6 +23,10 @@ do
TEST='yes'
DEBUILD_NOSIGN_OPTIONS="-us -uc"
shift
elif [[ $1 == '--ignore-deps' ]]
then
DEBUILD_NODEPS_OPTIONS="-d"
shift
else
echo "Unknown option $1"
exit 2
Expand Down Expand Up @@ -51,7 +55,7 @@ make_control "$CONTROL" "$DAEMONS"
gen_changelog "$REVISION" "$CHDATE" "$AUTHOR" "$CHLOG" "$DAEMONS"

# Build (only binary packages).
debuild -e DAEMONS="${DAEMONS}" -e ENABLE_MONGODB -e GLIBC_COMPATIBILITY -e CC -e CXX -b ${DEBUILD_NOSIGN_OPTIONS}
debuild -e DAEMONS="${DAEMONS}" -e ENABLE_MONGODB -e GLIBC_COMPATIBILITY -e CC -e CXX -b ${DEBUILD_NOSIGN_OPTIONS} ${DEBUILD_NODEPS_OPTIONS}

if [[ $STANDALONE != 'yes' ]]
then
Expand Down

0 comments on commit 8970161

Please sign in to comment.