Skip to content

Commit

Permalink
fixing invalid value warning for git pull
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar committed Oct 18, 2020
1 parent f574b7c commit c804749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blog-post-workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ Promise.allSettled(promiseArray).then((results) => {
if (postsArray.length > 0) {
try {
if (!process.env.TEST_MODE) {
exec('git', ['config','pull.rebase', ' true']);
exec('git', ['config','pull.rebase', 'true']);
exec('git',['pull']); // Pulling the latest changes from upstream
}
const readmeData = fs.readFileSync(README_FILE_PATH, 'utf8');
Expand Down

0 comments on commit c804749

Please sign in to comment.