Skip to content

Commit ddfad34

Browse files
committed
fix: Hotfixes
1 parent 9b8068f commit ddfad34

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pkg/lib/util/symlink.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ symlink.bin_util_create_symlink() {
102102

103103
local bin_name="${full_bin_file##*/}"
104104
if [ -L "$install_dir/bin/$bin_name" ]; then
105-
log.error "Skipping '$bin_name' since an existing symlink with the same name already exists"
105+
bprint.warn "Skipping '$bin_name' since an existing symlink with the same name already exists"
106106
else
107107
ln -sf "$full_bin_file" "$install_dir/bin/$bin_name"
108108
chmod +x "$install_dir/bin/$bin_name"

pkg/lib/util/util.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -380,11 +380,11 @@ Global subcommands:
380380
List all installed packages or just the specified ones
381381
382382
Examples:
383-
basalt add tj/git-extras
384-
basalt add github.com/tj/git-extras
385-
basalt add https://github.com/tj/git-extras
386-
basalt add git@github.com:tj/git-extras
387-
basalt add hyperupcall/bash-args --branch=main
388-
basalt add hyperupcall/bash-args@v0.6.1 # out of date
383+
basalt global add tj/git-extras
384+
basalt global add github.com/tj/git-extras
385+
basalt global add https://github.com/tj/git-extras
386+
basalt global add git@github.com:tj/git-extras
387+
basalt global add hyperupcall/bash-args --branch=main
388+
basalt global add hyperupcall/bash-args@v0.6.1 # out of date
389389
EOF
390390
}

0 commit comments

Comments
 (0)