diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2017-12-29 10:17:52 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2017-12-29 10:17:52 +0000 |
| commit | 8e6a2dbfa5d44a4b259527f35b55575e3fe759c8 (patch) | |
| tree | d7f648d92ff4087e70828337be860b5c755076b2 /packaging/release-sign-tarballs | |
| parent | Merge branch 'attrvaluesize' of gitlab.com:darktrojan/inkscape (diff) | |
| download | inkscape-8e6a2dbfa5d44a4b259527f35b55575e3fe759c8.tar.gz inkscape-8e6a2dbfa5d44a4b259527f35b55575e3fe759c8.zip | |
remove git remnants
Diffstat (limited to 'packaging/release-sign-tarballs')
| -rwxr-xr-x | packaging/release-sign-tarballs | 8 |
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'." |
