1
0
Fork 0

dotsync: set fallback for host package

This commit is contained in:
Luca Bilke 2024-10-08 19:55:30 +02:00
parent 7bbcef2314
commit 10d1a0100f

View file

@ -12,11 +12,17 @@ stow_git() {
multi_stow() {
ret=0
for package in common "$(hostname)"; do
[ -n "$package" ] && [ -e "${STOW_DIR}/${package}" ] && {
stow --no-folding -d "$STOW_DIR" -t "$HOME" "$@" "$package"
ret=$((ret + $?))
}
hostname=$(hostname)
if [ -e "${STOW_DIR}/$hostname" ]; then
host_package=$hostname
else
host_package="fallback"
fi
for package in common ${host_package}; do
stow --no-folding -d "$STOW_DIR" -t "$HOME" "$@" "$package"
ret=$((ret + $?))
done
return $ret
}