From 9aa9e8da2c4702866547480d7737ea7ff6c48793 Mon Sep 17 00:00:00 2001 From: Russell Newton Date: Mon, 26 Sep 2022 17:32:38 -0400 Subject: [PATCH] #8 - Replace .txt in common.js with .json --- src/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.js b/src/common.js index b764705..20e1dc5 100644 --- a/src/common.js +++ b/src/common.js @@ -60,7 +60,7 @@ function run(command, args, opts = {}) { //////////////////////////////////////////////////////////////////////// function getReleaseTags() { - let tagsFile = path.join(emsdkBase(), 'emscripten-releases-tags.txt'); + let tagsFile = path.join(emsdkBase(), 'emscripten-releases-tags.json'); let rawData = fs.readFileSync(tagsFile); return JSON.parse(rawData); }