Skip to content

Commit

Permalink
Include all man pages in packaged releases
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jan 25, 2016
1 parent f74b54a commit bfc9228
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 1 addition & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,4 @@ source 'https://rubygems.org'
gem 'aruba', '~> 0.5.3'
gem 'cucumber', '~> 1.3.9'
gem 'sinatra'

group :development do
gem 'ronn'
end
gem 'ronn'
2 changes: 1 addition & 1 deletion script/package
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if [ "$os" = "windows" ]; then
else
cp -R README.md LICENSE etc "$tmpdir"
mkdir -p "${tmpdir}/share/man/man1"
cp man/hub.1 "${tmpdir}/share/man/man1"
cp man/*.1 man/*.1.txt "${tmpdir}/share/man/man1"
cp script/install.sh "${tmpdir}/install"
chmod +x "${tmpdir}/install"
fi
Expand Down
1 change: 1 addition & 0 deletions script/publish-release
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ set -e

if [[ $TRAVIS_TAG == v* ]] && [ "$TRAVIS_OS_NAME" = "linux" ] && [ -n "$GITHUB_OAUTH" ]; then
version="${TRAVIS_TAG#v}"
make man-pages
script/cross-compile "$version" | script/github-release hub "$version"
fi

0 comments on commit bfc9228

Please sign in to comment.