From 63f531bc08dce3490aa0bdc7251afd342c3a7b60 Mon Sep 17 00:00:00 2001 From: 1000ch Date: Fri, 5 Jun 2020 22:51:54 +0900 Subject: [PATCH] fix: update release URL --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 9b5c40a..dc11c66 100644 --- a/lib/index.js +++ b/lib/index.js @@ -3,7 +3,7 @@ const path = require('path'); const BinWrapper = require('bin-wrapper'); const suffix = require('./suffix.js'); -const url = 'https://github.com/GoogleChrome/simplehttp2server/releases/download/3.1.3/'; +const url = 'https://github.com/GoogleChromeLabs/simplehttp2server/releases/download/3.1.3/'; const extension = process.platform === 'win32' ? '.exe' : ''; const filename = `simplehttp2server${suffix()}${extension}`;