8 lines
206 B
Plaintext
8 lines
206 B
Plaintext
|
. ~/.bashrc
|
||
|
|
||
|
# === persist copilot auth files inside .local volume ===
|
||
|
if [ ! -d ~/.config/github-copilot ]; then
|
||
|
mkdir -p ~/.local/share/github-copilot
|
||
|
ln -s ~/.local/share/github-copilot ~/.config
|
||
|
fi
|