Skip to content

Commit 016e9e2

Browse files
authored
Merge pull request #7 from dangbert/patch-1
2 parents c66e19d + 09a9964 commit 016e9e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ For `bun`, `deno` and `pnpm`, they are disabled by default.
183183
pnpm config set minimumReleaseAge <minutes>
184184

185185
# only install packages published at least 1 day ago
186-
npm install --before="$(date -v -1d)"
186+
npm install --before="$(date -v -1d)" # for Mac or BSD users
187+
npm install --before="$(date -d '1 days ago' +%Y-%m-%dT%H:%M:%S%z)" # for Linux users
188+
187189

188190
yarn config set npmMinimalAgeGate <minutes>
189191
```

0 commit comments

Comments
 (0)