From 7c72b502db6eab765ffef408d1eb3cc999a6c482 Mon Sep 17 00:00:00 2001 From: dnkmmr <104856296+dnkmmr69420@users.noreply.github.com> Date: Fri, 16 Aug 2024 14:03:53 -0500 Subject: [PATCH] fixed path for linked bin in brew-link --- bin/brew-link | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/brew-link b/bin/brew-link index 9443fb4..8cb2bea 100755 --- a/bin/brew-link +++ b/bin/brew-link @@ -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