dotsync: set fallback for host package
This commit is contained in:
parent
7bbcef2314
commit
10d1a0100f
1 changed files with 11 additions and 5 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue