Skip to content

Commit

Permalink
fixed path for linked bin in brew-link
Browse files Browse the repository at this point in the history
  • Loading branch information
dnkmmr69420 authored Aug 16, 2024
1 parent 5c4059d commit 7c72b50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/brew-link
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ if test ! -f $binpath/$bin; then
exit 1
fi

if test -f $HOME/.local/share/clinuxbrew/.linuxbrew/exports/bin/$bin; then
if test -f $HOME/.local/share/clinuxbrew/exports/bin/$bin; then
echo "$bin has already been linked"
exit 1
fi

ln -s $binpath/$bin $HOME/.local/share/clinuxbrew/.linuxbrew/exports/bin/$bin
ln -s $binpath/$bin $HOME/.local/share/clinuxbrew/exports/bin/$bin

0 comments on commit 7c72b50

Please sign in to comment.