Skip to content

Commit

Permalink
3.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves committed Jun 26, 2020
1 parent d28d56a commit dd9ddf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function init(action) {
yield execute_1.execute(`git config user.name "${action.name}"`, action.workspace, action.silent);
yield execute_1.execute(`git config user.email "${action.email}"`, action.workspace, action.silent);
yield execute_1.execute(`git remote rm origin`, action.workspace, action.silent);
yield execute_1.execute(`git remote add origin ${action.repositoryPath}`, action.workspace);
yield execute_1.execute(`git remote add origin ${action.repositoryPath}`, action.workspace, action.silent);
yield execute_1.execute(`git fetch --no-recurse-submodules`, action.workspace, action.silent);
core_1.info('Git configured… 🔧');
}
Expand Down

0 comments on commit dd9ddf6

Please sign in to comment.