Skip to content

Commit

Permalink
Update lib4bin
Browse files Browse the repository at this point in the history
  • Loading branch information
VHSgunzo committed Nov 7, 2024
1 parent 799710c commit ae8badb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib4bin
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ for binary in "${BINARY_LIST[@]}"
then
SHARUN="${SHARUN:="$(readlink -f "$(which_exe sharun)")"}"
SHARUN="${SHARUN:="/tmp/$(uname -m)/sharun"}"
if [ ! -e "$SHARUN" ]
if [ ! -x "$SHARUN" ]
then
info_msg "Downloading sharun -> '$SHARUN'..."
info_msg "$(get_sharun_git_url)"
Expand All @@ -353,7 +353,7 @@ for binary in "${BINARY_LIST[@]}"
exit 1
fi
fi
if [ -e "$SHARUN" ]
if [ -x "$SHARUN" ]
then
try_mkdir "$DST_DIR"
cp $varg -f "$SHARUN" "${DST_DIR}/sharun"||exit 1
Expand Down

0 comments on commit ae8badb

Please sign in to comment.