diff --git a/dist/index.js b/dist/index.js index ba5ad7c..84a3c8b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1432,12 +1432,6 @@ const git = (args = []) => __awaiter(void 0, void 0, void 0, function* () { return res.stdout.trim(); }); }); -function getConfig(key) { - return __awaiter(this, void 0, void 0, function* () { - return yield git(['config', key]); - }); -} -exports.getConfig = getConfig; function setConfig(key, value) { return __awaiter(this, void 0, void 0, function* () { yield git(['config', key, value]); diff --git a/src/git.ts b/src/git.ts index 16930c7..22c20ce 100644 --- a/src/git.ts +++ b/src/git.ts @@ -9,10 +9,6 @@ const git = async (args: string[] = []): Promise => { }); }; -export async function getConfig(key: string): Promise { - return await git(['config', key]); -} - export async function setConfig(key: string, value: string): Promise { await git(['config', key, value]); }