mirror of
https://github.com/roytam1/UXP.git
synced 2026-05-26 05:38:39 +00:00
10 lines
298 B
Python
10 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"),
|
|
}
|