Skip to content

Commit

Permalink
chore(ghPagesDeploy): use "git add -A" instead of "git add *"
Browse files Browse the repository at this point in the history
  • Loading branch information
hasezoey committed Sep 11, 2023
1 parent dd40be3 commit c44e897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ghPagesDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ function main() {
console.log('\nCommiting Changes\n');

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

if (!hasChanges()) {
console.log('No changes, exiting');
Expand Down

0 comments on commit c44e897

Please sign in to comment.