diff --git a/scripts/bump-versions.sh b/scripts/bump-versions.sh index 751f0d77..aaa3d0c2 100755 --- a/scripts/bump-versions.sh +++ b/scripts/bump-versions.sh @@ -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 diff --git a/sources.txt b/sources.txt index 2b2ca454..2d3f8107 100644 --- a/sources.txt +++ b/sources.txt @@ -8,4 +8,3 @@ servant-server servant-blaze servant-lucid servant-mock -doc/tutorial diff --git a/travis.sh b/travis.sh index ac028050..60734911 100755 --- a/travis.sh +++ b/travis.sh @@ -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