🐛 fix: Installer works

SHE'S BACK BABEY!
This commit is contained in:
Marley 2024-01-21 21:49:27 -08:00
parent 70b93f81dc
commit 24270851a3
5 changed files with 4 additions and 4 deletions

0
homebrew/brew.sh Normal file → Executable file
View file

0
os/pref.sh Normal file → Executable file
View file

6
script/dot.sh Normal file → Executable file
View file

@ -168,7 +168,7 @@ link_file()
local skip= local skip=
local action= local action=
if [[ -f "$dst" -o -d "$dst" -o -L "$dst" ]]; then if [ -f "$dst" -o -d "$dst" -o -L "$dst" ]; then
if ! $overwrite_all && ! $backup_all && ! $skip_all; then if ! $overwrite_all && ! $backup_all && ! $skip_all; then
local current_src="$(readlink $dst)" local current_src="$(readlink $dst)"
@ -214,7 +214,7 @@ link_file()
fi fi
if ! $skip; then if [[ $skip != "true" ]]; then # "false" or empty
ln -s "$src" "$dst" ln -s "$src" "$dst"
print_success "Linked $src to $dst" print_success "Linked $src to $dst"
fi fi
@ -288,7 +288,7 @@ main()
if [[ -x "${dotfiles_dir}/script/utils.sh" ]]; then if [[ -x "${dotfiles_dir}/script/utils.sh" ]]; then
. "${dotfiles_dir}/script/utils.sh" || exit 1 . "${dotfiles_dir}/script/utils.sh" || exit 1
else else
download_utils || exit 1 download_utils || exit 1
fi fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

0
script/utils.sh Normal file → Executable file
View file

View file

@ -4,7 +4,7 @@
if [[ -d "$DOT/functions" ]]; then if [[ -d "$DOT/functions" ]]; then
fpath=($DOT/functions $fpath) fpath=($DOT/functions $fpath)
autoload -U $DOT/functions/*(:t) { autoload -U $DOT/functions/*(:t); } &> /dev/null
fi fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -