From 8e6a2dbfa5d44a4b259527f35b55575e3fe759c8 Mon Sep 17 00:00:00 2001 From: Marc Jeanmougin Date: Fri, 29 Dec 2017 11:17:52 +0100 Subject: remove git remnants --- packaging/release-sign-tarballs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packaging') 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'." -- cgit v1.2.3