Use double quote for test commit messages

This commit is contained in:
Paul Hatcherian 2020-10-06 20:50:09 -04:00
parent bcb0692ebb
commit 0383dec643

View file

@ -38,7 +38,7 @@ const createTestRepo = (inputs) => {
makeCommit: (msg, path) => {
run(`touch ${path !== undefined ? path.trim('/') + '/' : ''}test${i++}`);
run(`git add --all`);
run(`git commit -m '${msg}'`);
run(`git commit -m "${msg}"`);
},
runAction: (inputs) => run(`node ${path.join(__dirname, 'index.js')}`, inputs),
exec: run