This repository has been archived by the owner on May 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
842c5b4
commit 6facfb8
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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)) | ||
|