diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/fetch-play-metadata.py | 4 | ||||
-rwxr-xr-x | scripts/pullTranslations.py | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/scripts/fetch-play-metadata.py b/scripts/fetch-play-metadata.py index 309c3795..e94f4c73 100644 --- a/scripts/fetch-play-metadata.py +++ b/scripts/fetch-play-metadata.py @@ -30,9 +30,9 @@ service = build('androidpublisher', 'v3', credentials=credentials, cache_discove # Base path for Fastlane metadata def get_metadata_path(package_name): if package_name == "se.leap.bitmaskclient": - return 'src/normal/fastlane/metadata/android' + return 'src/normalProductionFat/fastlane/metadata/android' elif package_name == "se.leap.riseupvpn": - return 'src/custom/fastlane/metadata/android' + return 'src/customProductionFat/fastlane/metadata/android' else: raise ValueError(f"Unknown package name: {package_name}") diff --git a/scripts/pullTranslations.py b/scripts/pullTranslations.py index edfd5718..e688862a 100755 --- a/scripts/pullTranslations.py +++ b/scripts/pullTranslations.py @@ -46,9 +46,9 @@ def list_locales(app_type): # If there's no file, tx will skip the translations def create_metadata_files(locales, app_type): if app_type == "main": - metadata_dir = get_script_path() + "/../src/normal/fastlane/metadata/android" + metadata_dir = get_script_path() + "/../src/normalProductionFat/fastlane/metadata/android" elif app_type == "custom": - metadata_dir = get_script_path() + "/../src/custom/fastlane/metadata/android" + metadata_dir = get_script_path() + "/../src/customProductionFat/fastlane/metadata/android" else: raise ValueError("Invalid app type. Use 'main' or 'custom'.") for locale_code in locales: @@ -138,9 +138,9 @@ if __name__ == "__main__": args = parser.parse_args() if args.app_type == "main": - metadata_dir = get_script_path() + "/../src/normal/fastlane/metadata/android" + metadata_dir = get_script_path() + "/../src/normalProductionFat/fastlane/metadata/android" elif args.app_type == "custom": - metadata_dir = get_script_path() + "/../src/custom/fastlane/metadata/android" + metadata_dir = get_script_path() + "/../src/customProductionFat/fastlane/metadata/android" else: raise ValueError("Invalid app type. Use 'main' or 'custom'.") |