You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extensions: skip git fetches during config-dump-json
The image-output-arduino and gateway-dk-ask extensions call
fetch_from_repo from post_family_config__* hooks. Those hooks run
during config-dump-json, where $HOME is unset, so the underlying
git_ensure_safe_directory call fails with:
fatal: $HOME not set
git config --global --add safe.directory /armbian/cache/sources/qcombin
This made config-dump-json error out for arduino-uno-q and gateway-dk.
Guard the affected hooks with CONFIG_DEFS_ONLY (the same pattern used
in extensions/ufs.sh) so they no-op during config dumps.
0 commit comments