Don't include 6.0 builds in incrementals
This commit is contained in:
parent
c653449cc0
commit
879da4feef
1 changed files with 3 additions and 1 deletions
|
@ -82,6 +82,8 @@ if [ "$VERSION" ]; then
|
|||
aws s3 cp "$INCR_PATH" $S3_URL
|
||||
# Show last n versions
|
||||
elif [ "$NUM_VERSIONS" ]; then
|
||||
tail -n $NUM_VERSIONS "$INCR_PATH"
|
||||
# TEMP: Don't include 6.0 versions
|
||||
#tail -n $NUM_VERSIONS "$INCR_PATH"
|
||||
tail -n $NUM_VERSIONS "$INCR_PATH" | grep -v '^6\.0'
|
||||
fi
|
||||
rm "$INCR_PATH"
|
||||
|
|
Loading…
Add table
Reference in a new issue