Skip to content

Commit

Permalink
naah
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Feb 10, 2024
1 parent 1406da8 commit b6fc6d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/src/postinstall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ export default async function(this: ScriptContext) {
await Promise.all([
origPostinstall.call(this), // TODO: weird. use non-cli utility

// naaahhh
// If in a GitHub Action running against a PR, it's not a real branch (just a commit)
// and thus github-subrepo fails. We don't care about hiding these files in CI anyway.
// They're just for ergonomic reasons while developing.
!process.env.CI &&
hideMetaFiles(process.cwd(), true), // silent=true
// !process.env.CI &&

hideMetaFiles(process.cwd(), true), // silent=true
])
}

0 comments on commit b6fc6d7

Please sign in to comment.