diff --git a/scripts/github-apply b/scripts/github-apply index 2343ebe293..2e69666384 100755 --- a/scripts/github-apply +++ b/scripts/github-apply @@ -5,5 +5,5 @@ cd $LIBRENMS_DIR case $1 in ''|*[!0-9]*) echo "You must specify a PR number to apply a patch" ;; - *) curl -s https://patch-diff.githubusercontent.com/raw/librenms/librenms/pull/${1}.patch | git apply -v ${2} ;; + *) curl -s https://patch-diff.githubusercontent.com/raw/librenms/librenms/pull/${1}.diff | git apply -v ${2} ;; esac