Skip to content

Commit

Permalink
enhance(main/tergent): remove warning about v0/v1 incompatibility
Browse files Browse the repository at this point in the history
It has been quite a while since the v0 -> v1 update.  Remove warning
to not confuse users on future revision bumps.
  • Loading branch information
Grimler91 committed Jun 3, 2022
1 parent fd01c38 commit 34f2835
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions packages/tergent/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,3 @@ termux_step_make_install() {
install -Dm600 -t $TERMUX_PREFIX/lib \
target/${CARGO_TARGET_NAME}/${BUILD_TYPE}/libtergent.so
}

termux_step_create_debscripts() {
cat <<- EOF > ./postinst
#!${TERMUX_PREFIX}/bin/bash
echo
echo "Tergent since v1.x has some breaking changes."
echo
echo "You will need new keys. See https://github.com/aeolwyr/tergent/blob/master/README.md#upgrading-from-01 for more details on how to upgrade."
echo
read -p "Are you sure you're ready to upgrade? [yN] " yn
case \$yn in
[Yy]* ) exit 0;;
* ) exit 1;;
esac
EOF
}

0 comments on commit 34f2835

Please sign in to comment.