move doc/tutorial out of sources.txt

This commit is contained in:
Sönke Hahn 2016-04-01 20:48:03 +08:00
parent 94982c15dc
commit 1fe37d5170
3 changed files with 3 additions and 4 deletions

View File

@ -56,7 +56,7 @@ done
if $DRY_RUN ; then
echo "Would have bumped position ${POSITION} on these packages:"
( cd "$ROOT" && bumper --dry-run -"$POSITION" $(join , $SOURCES) )
( cd "$ROOT" && bumper --dry-run -"$POSITION" $(join , $SOURCES tutorial) )
else
( cd "$ROOT" && bumper -"$POSITION" $(join , $SOURCES) )
( cd "$ROOT" && bumper -"$POSITION" $(join , $SOURCES tutorial) )
fi

View File

@ -8,4 +8,3 @@ servant-server
servant-blaze
servant-lucid
servant-mock
doc/tutorial

View File

@ -2,7 +2,7 @@
set -o errexit
for package in $(cat sources.txt) ; do
for package in $(cat sources.txt) doc/tutorial ; do
echo testing $package
pushd $package
tinc