diff --git a/dist/git.js b/dist/git.js index 0550942..11e5a36 100644 --- a/dist/git.js +++ b/dist/git.js @@ -6,7 +6,6 @@ const os = require("os"); const path = require("path"); exports.folder = path.join(os.tmpdir(), `xmake${Date.now()}`); const opt = { cwd: exports.folder }; -const a = 121212; async function create(ref) { await io.rmRF(exports.folder); await io.mkdirP(exports.folder); diff --git a/src/git.ts b/src/git.ts index 58be8c3..46f0ed0 100644 --- a/src/git.ts +++ b/src/git.ts @@ -5,7 +5,6 @@ import * as path from 'path' export const folder = path.join(os.tmpdir(), `xmake${Date.now()}`) const opt = { cwd: folder } -const a = 12_12_12 export async function create(ref: string) { await io.rmRF(folder)