Files
AI/참고/playwright-main/browser_patches/winldd/build.sh
2026-05-12 19:40:31 +09:00

15 lines
236 B
Bash

#!/usr/bin/env bash
set -e
set +x
trap "cd $(pwd -P)" EXIT
cd "$(dirname $0)"
source "../utils.sh"
if is_win; then
/c/Windows/System32/cmd.exe "/c buildwin.bat"
else
echo "ERROR: cannot upload on this platform!" 1>&2
exit 1;
fi