Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
bebraw committed Apr 16, 2015
1 parent eaca554 commit 1c9a577
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/replace_meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,25 +40,27 @@ function main() {
];

if(originals.user !== result.user) {
console.log('replacing users/organizations');

replace({
regex: originals.user,
replacement: result.user,
paths: replacementPaths,
recursive: true,
silent: false,
quiet: false,
count: true,
});
}

if(originals.project !== result.project) {
console.log('replacing projects');

replace({
regex: originals.project,
replacement: result.project,
paths: replacementPaths,
recursive: true,
silent: false,
quiet: false,
count: true,
});
}
Expand Down

0 comments on commit 1c9a577

Please sign in to comment.