diff options
author | louie <lshprung@yahoo.com> | 2021-08-27 07:16:49 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2021-08-27 07:16:49 -0700 |
commit | cc1dd9e92ccb9b157000436e6deff47610d07a71 (patch) | |
tree | 5f0ac42134f9fc000495cc74cb6c2a13e3c9ca39 /update_ungoogled_chromium.sh | |
parent | 0414fcfd40277e38424643888b63ac19f32efe04 (diff) |
Fixed bug for first time install
Diffstat (limited to 'update_ungoogled_chromium.sh')
-rwxr-xr-x | update_ungoogled_chromium.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_ungoogled_chromium.sh b/update_ungoogled_chromium.sh index 2b369eb..6d3d10a 100755 --- a/update_ungoogled_chromium.sh +++ b/update_ungoogled_chromium.sh @@ -117,7 +117,7 @@ VERSION=$(echo "$FULL_INFO" | head -n 1 | cut -d ':' -f 2 | sed 's/^[ ]*//g' | g URL=$(echo "$FULL_INFO" | sed -n "2p") # Handle if LINK is in PATH by getting the absolute path with which -if [ ! -e "$LINK" ]; then +if [ ! -e "$LINK" ] && [ ! -e $(which "$LINK") ]; then LINK=$(which "$LINK") fi |