playwright-go/scripts/apply-patch.sh
2021-10-04 11:15:47 +02:00

25 lines
438 B
Bash
Executable File

#!/bin/bash
set -e
BRANCH_NAME_BUILD="playwright-build"
SCRIPTS_DIR="$(dirname "$0")"
echo "Applying patches..."
pushd "$SCRIPTS_DIR/.."
git submodule update --init
pushd playwright
git checkout HEAD --detach
if git show-ref -q --heads "$BRANCH_NAME_BUILD"; then
git branch -D "$BRANCH_NAME_BUILD"
fi
git checkout -b "$BRANCH_NAME_BUILD"
git apply --whitespace=nowarn ../patches/*
git add -A
git commit -m "Applied patches"
popd