Skip to content

Commit

Permalink
Merge pull request #14 from ize-302/develop
Browse files Browse the repository at this point in the history
refactor: typo 📦
  • Loading branch information
ize-302 authored Sep 28, 2024
2 parents 0ddda12 + 3608cef commit 6e59b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/hasStagedChanges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const hasStagedChanges = () => {
const stagedChanges = gitStatus.split("\n").filter((line) => /^[AM] /.test(line));

if (stagedChanges.length === 0) {
console.log("You have no changes staged for commit. Please stage you commit before continuing!");
console.log("You have no changes staged for commit. Please stage your commit before continuing!");
return false;
}
return true;
Expand Down

0 comments on commit 6e59b8f

Please sign in to comment.