Skip to content

Commit

Permalink
build: ignore testbuilds when uploading to github
Browse files Browse the repository at this point in the history
  • Loading branch information
ncw committed Feb 9, 2019
1 parent d29c545 commit 71d1890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/upload-github
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ github-release release \
--name "rclone" \
--description "Rclone - rsync for cloud storage. Sync files to and from many cloud storage providers."

for build in `ls build | grep -v current`; do
for build in `ls build | grep -v current | grep -v testbuilds`; do
echo "Uploading ${build}"
base="${build%.*}"
parts=(${base//-/ })
Expand Down

0 comments on commit 71d1890

Please sign in to comment.