Skip to content

Commit

Permalink
fix(reposService): simple git path cwd (#1005)
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore03109 authored Nov 1, 2023
1 parent 44663eb commit 0d9585b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/identity/ReposService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export default class ReposService {
.checkoutLocalBranch("staging")

// Add all the changes
await this.simpleGit.cwd(stgDir).add(".")
await this.simpleGit.cwd({ path: stgDir, root: false }).add(".")

// Commit
await this.simpleGit
Expand Down

0 comments on commit 0d9585b

Please sign in to comment.