mirror of
https://github.com/playwright-community/playwright-go.git
synced 2026-06-03 21:02:27 +08:00
13 lines
149 B
Bash
Executable File
13 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Applying patches..."
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
cd ../playwright
|
|
|
|
git apply --index --whitespace=nowarn ../patches/*
|
|
|
|
git add -A
|
|
|
|
cd - |