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

Commit ab9c22a

Browse files
committed
Fix fetch updates for the tunnel client.
Signed-off-by: David Calavera <[email protected]>
1 parent 2574406 commit ab9c22a

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)