mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-20 03:34:04 +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
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
|