Disable checkout function for (official) docker containers (#5416)

pull/5427/head
Adam Warner 8 months ago committed by GitHub
commit 9622265c8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -413,6 +413,9 @@ tailFunc() {
}
piholeCheckoutFunc() {
if [ -n "${DOCKER_VERSION}" ]; then
unsupportedFunc
else
if [[ "$2" == "-h" ]] || [[ "$2" == "--help" ]]; then
echo "Usage: pihole checkout [repo] [branch]
Example: 'pihole checkout master' or 'pihole checkout core dev'
@ -433,6 +436,7 @@ Branches:
source "${PI_HOLE_SCRIPT_DIR}"/piholeCheckout.sh
shift
checkout "$@"
fi
}
tricorderFunc() {

Loading…
Cancel
Save