aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/constants.js1
-rw-r--r--src/constants.ts1
2 files changed, 0 insertions, 2 deletions
diff --git a/build/constants.js b/build/constants.js
index 861eae6..91c862c 100644
--- a/build/constants.js
+++ b/build/constants.js
@@ -120,7 +120,6 @@ async function editFile(file, message, newContent) {
});
}
async function fetchJSONConstant(filename) {
- console.log('actually fetchJSONConstant');
const file = await fetchFile(filename);
try {
return JSON.parse(file.content);
diff --git a/src/constants.ts b/src/constants.ts
index 1652b6b..14d94cd 100644
--- a/src/constants.ts
+++ b/src/constants.ts
@@ -125,7 +125,6 @@ async function editFile(file: GithubFile, message: string, newContent: string):
}
export async function fetchJSONConstant(filename: string): Promise<string[]> {
- console.log('actually fetchJSONConstant')
const file = await fetchFile(filename)
try {
return JSON.parse(file.content)