mirror of
https://github.com/playwright-community/playwright-go.git
synced 2026-06-12 21:01:15 +08:00
25 lines
438 B
Bash
Executable File
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 |