Skip to content

Commit 94c120d

Browse files
committed
Syntax error
1 parent 009cb96 commit 94c120d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/egg.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ Powershell:
1414
```powershell
1515
mvn -B package -am -pl UnicodeJsps -DskipTests=true
1616
$CLDR_REF = $(mvn help:evaluate "-Dexpression=cldr.version" -q -DforceStdout).Split("-")[2]
17-
if (-not Test-Path cldr) {
17+
if (-not (Test-Path cldr)) {
1818
git clone https://github.com/unicode-org/cldr.git "--reference=..\cldr"
1919
}
20-
Set-Location cldr
20+
Push-Location cldr
21+
git fetch
2122
git reset --hard $CLDR_REF
23+
Pop-Location
2224
```
2325
WSL:
2426
```bash

0 commit comments

Comments
 (0)