mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
24 lines
763 B
Python
24 lines
763 B
Python
import os
|
|
|
|
ABS_WORK_DIR = os.path.join(os.getcwd(), "build")
|
|
config = {
|
|
"vcs_share_base": os.path.join(ABS_WORK_DIR, 'hg-shared'),
|
|
"log_name": "bump_esr",
|
|
"version_files": [
|
|
{"file": "browser/config/version.txt", "suffix": ""},
|
|
{"file": "browser/config/version_display.txt", "suffix": ""},
|
|
{"file": "config/milestone.txt", "suffix": ""},
|
|
],
|
|
"tools_repo_url": "https://hg.mozilla.org/build/tools",
|
|
"tools_repo_branch": "default",
|
|
"to_repo_url": "ssh://hg.mozilla.org/releases/mozilla-esr52",
|
|
|
|
"migration_behavior": "bump_second_digit",
|
|
"require_remove_locales": False,
|
|
"requires_head_merge": False,
|
|
"default_actions": [
|
|
"clean-repos",
|
|
"pull",
|
|
"bump_second_digit"
|
|
],
|
|
}
|