Codebase list rust-stfu8 / 0cb7843
Require debcargo 2.1.4 or later Ximin Luo 5 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
3232 test -x "$DEBCARGO" || abort 1 "debcargo found but not executable: $DEBCARGO"
3333 dcver=$($DEBCARGO --version | sed -ne 's/debcargo //p')
3434 case $dcver in
35 2.0.*|2.1.0*|2.1.1|2.1.1-*|2.1.2|2.1.2-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
35 2.0.*|2.1.0*|2.1.[123]|2.1.[123]-*) abort 1 "unsupported debcargo version $dcver. try reinstalling with \`cargo install debcargo --force\`";;
3636 2.1.*) true;;
3737 *) abort 1 "unsupported debcargo version: $dcver";;
3838 esac