Skip to content

Commit 42e4c76

Browse files
authored
chore: clean up build.sh script (#3053)
1 parent d277fb4 commit 42e4c76

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

ROLLING.md

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
## Pre-requisites
44

5-
* install .NET SDK 8 with installer: https://dotnet.microsoft.com/download/dotnet/8.0
6-
* install necessary build tools:
7-
```bash
8-
./build.sh --init
9-
# restart terminal after that
10-
```
5+
Install .NET SDK 8 with installer: https://dotnet.microsoft.com/download/dotnet/8.0
116

127
## Rolling
138

build.sh

+1-15
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ cd "$(dirname "$0")"
88
if [[ ($1 == '--help') || ($1 == '-h') ]]; then
99
echo "usage: build.sh <command>"
1010
echo "commands:"
11-
echo " --init - download .NET deps and download driver"
1211
echo " --roll <version> - roll the .NET language binding to a specific driver version"
1312
echo " --download-driver - download the driver"
14-
echo " --update-assets - sync the assets from 'playwright' to 'playwright-dotnet'"
1513
echo " --help - show this help"
1614
echo
1715
exit 0
@@ -35,14 +33,6 @@ function download_driver() {
3533
echo "done"
3634
}
3735

38-
function update_assets() {
39-
echo "updating assets..."
40-
dotnet_assets_path="./src/Playwright.Tests.TestServer/assets"
41-
rm -rf "$dotnet_assets_path"
42-
cp -r "${upstream_repo_path}/tests/assets" "${dotnet_assets_path}"
43-
echo "done"
44-
}
45-
4636
function roll_driver() {
4737
new_driver_version="$1"
4838
upstream_package_version=$(node -e "console.log(require('${upstream_repo_path}/package.json').version)")
@@ -68,14 +58,10 @@ function roll_driver() {
6858
}
6959

7060
CMD="$1"
71-
if [[ ("$CMD" == "--init") ]]; then
72-
download_driver
73-
elif [[ ("$CMD" == "--roll") ]]; then
61+
if [[ ("$CMD" == "--roll") ]]; then
7462
roll_driver $2
7563
elif [[ ("$CMD" == "--download-driver") ]]; then
7664
download_driver
77-
elif [[ ("$CMD" == "--update-assets") ]]; then
78-
update_assets
7965
else
8066
echo "ERROR: unknown command - $CMD"
8167
echo "Pass --help for supported commands"

0 commit comments

Comments
 (0)