mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 13:33:59 +08:00
* export host config via .host/.env file. fix mac display issues
* append instead of replace for bashrc
* Log when mac display override happens
* Update xauthority path in json
old-commit-hash: dd26a1faad
8 lines
240 B
Bash
Executable File
8 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# setup safe directories for submodules
|
|
SUBMODULE_DIRS=$(git config --file .gitmodules --get-regexp path | awk '{ print $2 }')
|
|
for DIR in $SUBMODULE_DIRS; do
|
|
git config --global --add safe.directory "$PWD/$DIR"
|
|
done
|