mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-14 02:09:36 +00:00
738b7684cb
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
15 lines
627 B
Bash
Executable file
15 lines
627 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
if [ ! -d "$HOME/.git" ] && [ -d "$HOME/.local/share/yadm/repo.git" ]; then
|
|
echo "Symlinking ~/.git to ~/.local/share/yadm/repo.git for compatibility"
|
|
ln -s ~/.local/share/yadm/repo.git ~/.git
|
|
elif [ -d "$HOME/.git" ] && [ ! -d "$HOME/.local/share/yadm/repo.git" ]; then
|
|
echo "Symlinking ~/.local/share/yadm/repo.git to ~/.git for compatibility"
|
|
ln -s ~/.git ~/.local/share/yadm/repo.git
|
|
fi
|
|
|
|
echo "Setting git remote URLs to SSH"
|
|
git remote set-url origin ssh://git@mau.dev/andreijiroh.dev/dotfiles || true
|
|
git remote set-url hut ssh://git@git.sr.ht/~ajhalili2006/dotfiles || true
|