gh-action-bump-version/tests/end-to-end/git.js

8 lines
135 B
JavaScript
Raw Normal View History

2021-08-20 23:51:35 +00:00
const exec = require('./exec');
function git(options, ...params) {
return exec('git', options, ...params);
}
2021-09-09 04:25:16 +00:00
module.exports = git;