We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 009cb96 commit 94c120dCopy full SHA for 94c120d
docs/egg.md
@@ -14,11 +14,13 @@ Powershell:
14
```powershell
15
mvn -B package -am -pl UnicodeJsps -DskipTests=true
16
$CLDR_REF = $(mvn help:evaluate "-Dexpression=cldr.version" -q -DforceStdout).Split("-")[2]
17
-if (-not Test-Path cldr) {
+if (-not (Test-Path cldr)) {
18
git clone https://github.com/unicode-org/cldr.git "--reference=..\cldr"
19
}
20
-Set-Location cldr
+Push-Location cldr
21
+git fetch
22
git reset --hard $CLDR_REF
23
+Pop-Location
24
```
25
WSL:
26
```bash
0 commit comments