playwright-go/scripts/apply-patch.sh

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 -