Skip to content

Commit

Permalink
Fix install script not accepting INSTALL_FRONTEND override
Browse files Browse the repository at this point in the history
  • Loading branch information
sohkai committed Jul 18, 2019
1 parent 7d3cc6e commit 7821a02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/install
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const inCI = 'TRAVIS' in process.env && 'CI' in process.env
if (inCI) {
execute('npm run bootstrap:ci', { stdio: 'inherit' })
} else {
process.env.INSTALL_FRONTEND = true
process.env.INSTALL_FRONTEND =
process.env.INSTALL_FRONTEND === undefined ? true : process.env.INSTALL_FRONTEND
execute('npm run bootstrap -- --nohoist=@aragon/cli', { stdio: 'inherit' })
}

0 comments on commit 7821a02

Please sign in to comment.