summaryrefslogtreecommitdiffstats
path: root/packaging/release-sign-tarballs
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2017-12-29 10:17:52 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2017-12-29 10:17:52 +0000
commit8e6a2dbfa5d44a4b259527f35b55575e3fe759c8 (patch)
treed7f648d92ff4087e70828337be860b5c755076b2 /packaging/release-sign-tarballs
parentMerge branch 'attrvaluesize' of gitlab.com:darktrojan/inkscape (diff)
downloadinkscape-8e6a2dbfa5d44a4b259527f35b55575e3fe759c8.tar.gz
inkscape-8e6a2dbfa5d44a4b259527f35b55575e3fe759c8.zip
remove git remnants
Diffstat (limited to 'packaging/release-sign-tarballs')
-rwxr-xr-xpackaging/release-sign-tarballs8
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/release-sign-tarballs b/packaging/release-sign-tarballs
index 1c895d877..1731e1562 100755
--- a/packaging/release-sign-tarballs
+++ b/packaging/release-sign-tarballs
@@ -5,7 +5,7 @@ VERSION="0.92"
PKG_NAME="inkscape"
LIST_TO="inkscape-announce@lists.sf.net"
LIST_CC="inkscape-devel@lists.sf.net"
-VCS_SYSTEM="bzr"
+VCS_SYSTEM="git"
# Locate Dependencies
#------------------------------------------------------------------------------
@@ -61,7 +61,7 @@ HELP
#------------------------------------------------------------------------------
check_local_changes() {
- lines=$(bzr diff | wc -l)
+ lines=$(git diff | wc -l)
if [ $lines -gt 0 ]; then
echo ""
echo "Uncommitted changes found. Did you forget to commit? Aborting."
@@ -81,8 +81,8 @@ check_local_changes() {
# Create the package distribution
# Return 0 on success, 1 on fail
make_dist() {
- if [ $VCS_SYSTEM = "bzr" ] && [ ! -d .bzr ]; then
- echo "Error: There is no bzr repository here: $(pwd)"
+ if [ $VCS_SYSTEM = "git" ] && [ ! -d .git ]; then
+ echo "Error: There is no git repository here: $(pwd)"
return 1
else
echo "Error: Unrecognized version control '$VCS_SYSTEM'."