Skip to content

Commit

Permalink
Untitled commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kishore03109 committed Dec 6, 2023
1 parent e136e60 commit a8abd09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/db/GitFileSystemService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,10 @@ export default class GitFileSystemService {
isForce
? this.git
.cwd({ path: `${efsVolPath}/${repoName}`, root: false })
.push(["--force"])
.push([...gitOptions, "--force"])
: this.git
.cwd({ path: `${efsVolPath}/${repoName}`, root: false })
.push(),
.push(gitOptions),
(error) => {
logger.error(`Error when pushing ${repoName}: ${error}`)

Expand Down

0 comments on commit a8abd09

Please sign in to comment.