Skip to content

Commit

Permalink
Removed full example f extracting the the properties out of vm
Browse files Browse the repository at this point in the history
  • Loading branch information
judovana committed Oct 14, 2024
1 parent 9597d5d commit 1b2f20e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tooling/reproducible/ReproducibleBuilds.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,7 @@ java -XshowSettings:
...
```

In cygwin, you must handle the trailing `\r` otherwise it will fail later:

```bash
JAVA_VENDOR="$($JDK_DIR/bin/java -XshowSettings 2>&1| grep 'java.vendor = ' | sed 's/.* = //' | sed 's/\r.*//' )"
```
In cygwin, you must handle the trailing `\r` otherwise it will fail later. sed `\r` away as eg: `sed 's/\r.*//'` is usually enough.

e.g.,:

Expand Down

0 comments on commit 1b2f20e

Please sign in to comment.