From a011a2d8f4c9fe44a97124d6b0109d7389a3d9ea Mon Sep 17 00:00:00 2001 From: Brendan Early Date: Mon, 17 May 2021 14:25:37 -0500 Subject: [PATCH] fix extension name --- manifests/manifest-firefox.json | 2 +- scripts/build.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/manifest-firefox.json b/manifests/manifest-firefox.json index 2fe774e0..44e0e2ad 100644 --- a/manifests/manifest-firefox.json +++ b/manifests/manifest-firefox.json @@ -1,6 +1,6 @@ { "manifest_version": 2, - "name": "Authenticator: Two-Factor Authentication Client", + "name": "__MSG_extName__", "short_name": "__MSG_extShortName__", "version": "6.3.2", "default_locale": "en", diff --git a/scripts/build.sh b/scripts/build.sh index 62735654..94922ed7 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -56,7 +56,7 @@ if [[ $PLATFORM = "prod" ]]; then elif [[ $PLATFORM = "test" ]]; then ./node_modules/webpack-cli/bin/cli.js --config webpack.dev.js ./node_modules/.bin/tsc scripts/test-runner.ts --esModuleInterop -else +else ./node_modules/webpack-cli/bin/cli.js fi ./node_modules/sass/sass.js sass:css @@ -90,7 +90,7 @@ if [[ $PLATFORM = "prod" ]]; then postCompile "firefox" postCompile "edge" mkdir release - mv chrome firefox release + mv chrome firefox edge release elif [[ $PLATFORM = "test" ]]; then postCompile "chrome" postCompile "firefox"