Skip to content

Commit

Permalink
sysupgrade: disable partial updates from github
Browse files Browse the repository at this point in the history
  • Loading branch information
themactep committed Feb 21, 2025
1 parent 4204764 commit 7cc417b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package/thingino-sysupgrade/files/sysupgrade
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,10 @@ while getopts "bd:fhpx" flag; do
b) upgrade="boot"; url="$GITHUB_URL" ;;
d) requested_date=$OPTARG ;;
f) upgrade="full"; url="$GITHUB_URL" ;;
p) upgrade="part"; url="$GITHUB_URL" ;;
p)
echo "Partial upgrades disabled until further notice. Please perform a full upgrade instead."
exit 1
upgrade="part"; url="$GITHUB_URL" ;;
x) selfupdate="false" ;;
h | *) show_help ;;
esac
Expand Down

0 comments on commit 7cc417b

Please sign in to comment.