mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 15:23:47 -05:00
15 lines
238 B
JavaScript
15 lines
238 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.addPath = addPath;
|
|
|
|
/**
|
|
* Synchronously adds a path to git staging
|
|
*/
|
|
|
|
function addPath(sh, repoPath) {
|
|
sh.cd(repoPath);
|
|
sh.exec('git add .');
|
|
} |