summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-04-21 15:54:05 -0500
committerMatt A. Tobin <email@mattatobin.com>2022-04-21 15:54:05 -0500
commit13d6ff7e3399952875e7ff7673b2506e7e5f4026 (patch)
tree2978d00a6c390e2953ed90ea7665eb0213d77467
parentf51cbd52221acd3971410dc3c4b77bb961cd8b63 (diff)
downloadaura-central-13d6ff7e3399952875e7ff7673b2506e7e5f4026.tar.gz
[Mach:Bash] Add code.binaryoutcast.com to webpatch
-rwxr-xr-xmach4
1 files changed, 3 insertions, 1 deletions
diff --git a/mach b/mach
index 2dc247cd0..3209c0d26 100755
--- a/mach
+++ b/mach
@@ -43,7 +43,9 @@ elif [[ "$1" == "webpatch" ]] && [[ -n "$BINOC_GIT" ]] && [[ -n "$BINOC_CURL" ]]
printf "Patch with what?"
exit 1
else
- if [[ "$2" == *"github.com"* ]] || [[ "$2" == *"repo.palemoon.org"* ]]; then
+ if [[ "$2" == *"github.com"* ]] ||
+ [[ "$2" == *"code.binaryoutcast.com"* ]] ||
+ [[ "$2" == *"repo.palemoon.org"* ]]; then
echo ${2}.patch
$BINOC_CURL -L ${2}.patch | "$BINOC_GIT" apply --reject
else