Fix a bug in scripts/exec-install.sh

Signed-off-by: Gavin D. Howard <[email protected]>
This commit is contained in:
Gavin D. Howard 2023-02-17 08:47:47 -07:00
parent 7b9e2b6ddf
commit 21641355b3
Signed by: gavin
GPG Key ID: 93D31C8CA4AB6C63
1 changed files with 6 additions and 0 deletions

View File

@ -60,6 +60,12 @@ fi
# If it's a symlink, create an equivalent in the install directory.
for exe in $bindir/*; do
# Skip any directories in case the bin/ directory is also used as the
# prefix.
if [ -d "$exe" ]; then
continue
fi
base=$(basename "$exe")
if [ -L "$exe" ]; then