Overview
| Comment: | [build][fx] revert: build with specific permanent profile |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | build | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
5432f40dafdd8ad1d224f28550e3484d |
| User & Date: | olr on 2018-04-06 12:39:21 |
| Other Links: | manifest | tags |
Context
|
2018-04-06
| ||
| 13:25 | [tb][bug] fix dictionary import check-in: 8a28c07075 user: olr tags: trunk, tb | |
| 12:39 | [build][fx] revert: build with specific permanent profile check-in: 5432f40daf user: olr tags: trunk, build, fx | |
| 12:36 | [build][fx][bug] lexicon editor: set dictionary after import, hide save button after saving, + workaround for building with permanent specific profile (web-ext bug) check-in: 63cbaf7236 user: olr tags: trunk, build, fx | |
Changes
Modified make.py from [1dca0ff7aa] to [a8ca755148].
| ︙ | ︙ | |||
459 460 461 462 463 464 465 |
os.system(r'web-ext lint -o text')
if xArgs.firefox:
# Firefox Developper edition
spfFirefox = dVars['win_fx_dev_path'] if platform.system() == "Windows" else dVars['linux_fx_dev_path']
else:
# Firefox Nightly edition
spfFirefox = dVars['win_fx_nightly_path'] if platform.system() == "Windows" else dVars['linux_fx_nightly_path']
| | | | 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
os.system(r'web-ext lint -o text')
if xArgs.firefox:
# Firefox Developper edition
spfFirefox = dVars['win_fx_dev_path'] if platform.system() == "Windows" else dVars['linux_fx_dev_path']
else:
# Firefox Nightly edition
spfFirefox = dVars['win_fx_nightly_path'] if platform.system() == "Windows" else dVars['linux_fx_nightly_path']
os.system(r'web-ext run --firefox="' + spfFirefox + '" --browser-console --firefox-profile=debug')
# https://github.com/mozilla/web-ext/issues/932
# os.system(r'web-ext run --firefox="' + spfFirefox + r'" --browser-console --firefox-profile=C:\Users\EAK\AppData\Roaming\Mozilla\Firefox\Profiles\e26559tw.debug --keep-profile-changes')
# Thunderbird
if xArgs.thunderbird:
os.system("thunderbird -jsconsole -P debug")
else:
print("Folder not found: gc_lang/"+sLang)
|
| ︙ | ︙ |