Skip to content

Commit

Permalink
fix: postinstall hide message in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Nov 24, 2020
1 parent f74f4a2 commit 3d2320f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/postinstall.js
@@ -1,7 +1,7 @@
#!/usr/bin/env node

function main() {
if (process.env.SUPPRESS_SUPPORT || process.env.OPENCOLLECTIVE_HIDE) {
if (process.env.SUPPRESS_SUPPORT || process.env.OPENCOLLECTIVE_HIDE || process.env.CI) {
return;
}

Expand Down

0 comments on commit 3d2320f

Please sign in to comment.