Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
fix: install config globally
Browse files Browse the repository at this point in the history
  • Loading branch information
colinmeinke committed Sep 25, 2018
1 parent 842c5b4 commit 6facfb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commands/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ After that please use ${chalk.bold('s8 upgrade')} to upgrade ${chalk.bold('s8')}
} else {
console.log(chalk.dim('Installing private dependencies...'))

execAsync('npm i --no-save git+ssh://[email protected]:serieseight/config.git#master')
execAsync('npm i -g git+ssh://[email protected]:serieseight/config.git#master')
.then(() => console.log('Private dependencies installed!'))
.then(() => console.log(chalk.bold.green('Setup complete!')))
.catch(err => console.error(err))
Expand Down
2 changes: 1 addition & 1 deletion commands/upgrade.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = () => {
execAsync(`npm i -g ${name}`)
.then(() => console.log(`${chalk.bold('s8')} upgraded!`))
.then(() => console.log(chalk.dim('Upgrading private dependencies...')))
.then(() => execAsync('npm i --no-save git+ssh://[email protected]:serieseight/config.git#master'))
.then(() => execAsync('npm i -g git+ssh://[email protected]:serieseight/config.git#master'))
.then(() => console.log('Private dependencies upgraded!'))
.then(() => console.log(chalk.bold.green('Upgrade complete!')))
.catch(err => console.error(err))
Expand Down

0 comments on commit 6facfb8

Please sign in to comment.