Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Commit

Permalink
scripts: release: ignore .sqlite3 files when building
Browse files Browse the repository at this point in the history
  • Loading branch information
chaws committed Apr 16, 2020
1 parent 21f8124 commit c4e17af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ cleanup() {
}
git ls-tree -r --name-only HEAD | grep -v '\.tar$' | sort > "$git"

tar taf dist/squad-client-${v}.tar.gz | cut -d / -f 2- | grep -v '\(/$\|^$\|PKG-INFO\|egg-info\|\.pyc\)' | sort > "$tar"
tar taf dist/squad-client-${v}.tar.gz | cut -d / -f 2- | grep -v '\(/$\|^$\|PKG-INFO\|egg-info\|\.pyc\|\.sqlite3\)' | sort > "$tar"
diff -u "$tar" "$git"

if [ "${UPLOAD:-yes}" = 'no' ]; then
Expand Down

0 comments on commit c4e17af

Please sign in to comment.