Skip to content

Commit

Permalink
fix(clone-git-repository): add missing param and remove await
Browse files Browse the repository at this point in the history
Closes #18
  • Loading branch information
javier-sierra-sngular committed Oct 19, 2023
1 parent 85b0129 commit 4695e60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/user-flow-steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async function getSchemas(origin) {
const isOriginRemote = verifyRemoteOrigin(origin);

if (isOriginRemote) {
await cloneGitRepository(origin);
cloneGitRepository(origin, TEMP_FOLDER_NAME);
await addToGitignore(TEMP_FOLDER_NAME);
}

Expand Down

0 comments on commit 4695e60

Please sign in to comment.