mirror of
https://github.com/raspberrypi/rpi-update.git
synced 2026-01-20 21:13:38 +08:00
rpi-update: Warn against unsupported command line parameters
There seem to be users who think passing '-y' or '-v' will do something useful. Explicitly warn against this.
This commit is contained in:
@@ -3,6 +3,14 @@
|
|||||||
set -o nounset
|
set -o nounset
|
||||||
set -o errexit
|
set -o errexit
|
||||||
|
|
||||||
|
for i in $*; do
|
||||||
|
if [[ $i == -* ]]; then
|
||||||
|
echo "rpi-update does not accept command line dash parameters."
|
||||||
|
echo "See: https://github.com/raspberrypi/rpi-update/blob/master/README.md"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
REPO_URI=${REPO_URI:-"https://github.com/raspberrypi/rpi-firmware"}
|
REPO_URI=${REPO_URI:-"https://github.com/raspberrypi/rpi-firmware"}
|
||||||
REPO_API_URI=${REPO_URI/github.com/api.github.com\/repos}
|
REPO_API_URI=${REPO_URI/github.com/api.github.com\/repos}
|
||||||
REPO_CONTENT_URI=${REPO_URI/github.com/raw.githubusercontent.com}
|
REPO_CONTENT_URI=${REPO_URI/github.com/raw.githubusercontent.com}
|
||||||
|
|||||||
Reference in New Issue
Block a user