Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mxstbr committed May 15, 2016
1 parent 47c9ba6 commit 0f8d87d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internals/scripts/clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ mkdir('app/utils/tests');
cp('internals/templates/hooks.js',
'app/utils/hooks.js');
cp('internals/templates/hooks.test.js',
'app/utils/test/hooks.test.js');
'app/utils/tests/hooks.test.js');

// Replace the files in the root app/ folder
cp('internals/templates/app.js', 'app/app.js');
Expand All @@ -63,7 +63,7 @@ rm('-rf', 'internals/templates');
process.stdout.write(' ✓');

// Commit the changes
if (exec('git add . && git commit -qm "Remove default example"').code !== 0) {
if (exec('git add . --all && git commit -qm "Remove default example"').code !== 0) {
echo('\nError: Git commit failed');
exit(1);
}
Expand Down

0 comments on commit 0f8d87d

Please sign in to comment.