Bump to debcargo 2.2.9, add a package.sh symlink

This commit is contained in:
Ximin Luo 2018-11-14 20:08:41 -08:00
parent e5470969ec
commit f3c52e67cf
2 changed files with 2 additions and 1 deletions

1
package.sh Symbolic link
View File

@ -0,0 +1 @@
update.sh

View File

@ -35,7 +35,7 @@ fi
test -x "$DEBCARGO" || abort 1 "debcargo found but not executable: $DEBCARGO"
dcver=$($DEBCARGO --version | sed -ne 's/debcargo //p')
case $dcver in
2.0.*|2.1.*|2.2.[01234567]|2.2.[01234567]-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
2.0.*|2.1.*|2.2.[012345678]|2.2.[012345678]-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
2.2.*) true;;
*) abort 1 "unsupported debcargo version: $dcver";;
esac