mirror of
https://github.com/Windscribe/Desktop-App.git
synced 2026-06-06 20:18:28 +00:00
25 lines
830 B
Python
25 lines
830 B
Python
#!/usr/bin/env python
|
|
# ------------------------------------------------------------------------------
|
|
# Windscribe Build System
|
|
# Copyright (c) 2020-2026, Windscribe Limited. All rights reserved.
|
|
# ------------------------------------------------------------------------------
|
|
import os
|
|
|
|
# directory structure paths
|
|
BASE_DIR = os.path.dirname(os.path.abspath(__file__)) # tools/base
|
|
TOOLS_DIR = os.path.dirname(BASE_DIR)
|
|
ROOT_DIR = os.path.dirname(TOOLS_DIR)
|
|
COMMON_DIR = os.path.join(ROOT_DIR, "src/client/client-common")
|
|
TEMP_DIR = os.path.join(ROOT_DIR, "temp")
|
|
|
|
# some filenames
|
|
NOTARIZE_SCRIPT = "notarize.sh"
|
|
|
|
|
|
def notarize_script_filename_absolute():
|
|
return os.path.join(TOOLS_DIR, NOTARIZE_SCRIPT)
|
|
|
|
|
|
def mac_provision_profile_folder_name_absolute():
|
|
return os.path.join(ROOT_DIR, "data", "provisioning_profile")
|