Skip to content

Commit c44e897

Browse files
committed
chore(ghPagesDeploy): use "git add -A" instead of "git add *"
1 parent dd40be3 commit c44e897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ghPagesDeploy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function main() {
103103
console.log('\nCommiting Changes\n');
104104

105105
// add stage all changes
106-
execSync('git add *', { stdio: 'inherit' });
106+
execSync('git add -A', { stdio: 'inherit' });
107107

108108
if (!hasChanges()) {
109109
console.log('No changes, exiting');

0 commit comments

Comments
 (0)