1
0
mirror of synced 2025-12-23 03:44:00 -05:00

Check repository references (#16680)

* Check repository references

* Remove "foundRepoNames" that I used to find all the unique names

* A little speed up with Set

* Ignore a few files

* Remove remaining references

* Update README.md
This commit is contained in:
Kevin Heis
2020-12-03 08:41:03 -08:00
committed by GitHub
parent 75fd006de6
commit 11d8e415da
33 changed files with 140 additions and 94 deletions

View File

@@ -6,7 +6,7 @@ const s3ConfigPath = path.join(homedir, '.s3cfg')
// check for config files
if (!(fs.existsSync(awsCredsPath) || fs.existsSync(s3ConfigPath))) {
console.error('You need to set up awssume and s3cmd. Follow the steps at https://github.com/github/product-documentation/blob/master/doc-team-workflows/workflow-information-for-all-writers/setting-up-awssume-and-s3cmd.md')
console.error('You need to set up awssume and s3cmd. Follow the steps at docs-content/doc-team-workflows/workflow-information-for-all-writers/setting-up-awssume-and-s3cmd.md')
process.exit(1)
}