mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 18:33:07 +09:00
9 lines
298 B
Python
9 lines
298 B
Python
|
|
# This config contains dev values that will replace
|
||
|
|
# the values specified in the production config
|
||
|
|
# if specified like this (order matters):
|
||
|
|
# --cfg android/androidarm.py
|
||
|
|
# --cfg android/androidarm_dev.py
|
||
|
|
import os
|
||
|
|
config = {
|
||
|
|
"tooltool_cache_path": os.path.join(os.getenv("HOME"), "cache"),
|
||
|
|
}
|