Skip to content

Commit 273d774

Browse files
Josh WoodcockJosh Woodcock
Josh Woodcock
and
Josh Woodcock
authoredSep 17, 2020
fix: respect env.OPENCOLLECTIVE_HIDE (#1765)
Co-authored-by: Josh Woodcock <josh@spacee.com>
1 parent 6c471af commit 273d774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎bin/postinstall.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22

33
function main() {
4-
if (process.env.SUPPRESS_SUPPORT) {
4+
if (process.env.SUPPRESS_SUPPORT || process.env.OPENCOLLECTIVE_HIDE) {
55
return;
66
}
77

0 commit comments

Comments
 (0)
Please sign in to comment.