pull/5370/head
bunsenstraat 6 months ago
parent 158e7079d7
commit 27e18081c0
  1. 2
      apps/remixdesktop/src/tools/git.ts

@ -83,7 +83,7 @@ export const gitProxy = {
if(!input.remote || !input.remote.name) {
input.remote = { name: await gitProxy.defaultRemoteName(path), url: '' }
}
console.log('fetch', input, path, `git fetch ${input.remote.name} ${(input.ref && input.ref.name) ? input.ref.name : ''}`);
try {
const { stdout, stderr } = await execAsync(`git fetch ${input.remote.name} ${(input.ref && input.ref.name) ? input.ref.name : ''}`, { cwd: path });
if (stdout) {

Loading…
Cancel
Save