Skip to content
This repository was archived by the owner on Sep 12, 2019. It is now read-only.

Commit 3d2516d

Browse files
authored
Merge pull request #86 from netlify/fix_fetching_updates
Fix fetch updates for the tunnel client.
2 parents 2574406 + ab9c22a commit 3d2516d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/live-tunnel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@ async function fetchTunnelClient(execPath) {
8989
return false;
9090
}
9191

92-
const match = stdout.match(/^live-tunnel-client\/v([^\s]+)/);
92+
const match = stdout.match(/^live-tunnel-client\/v?([^\s]+)/);
9393
if (!match) {
9494
return false;
9595
}
9696

97-
return updateAvailable(match[1]);
97+
return updateAvailable("netlify/live-tunnel-client", match[1]);
9898
}
9999

100100
function execExist(binPath) {

0 commit comments

Comments
 (0)