Don't use realpath in the workflows

realpath isn't on some of the mac runners

Diffs=
b4e2d26ea Don't use realpath in the workflows (#6000)

Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
This commit is contained in:
csmartdalton
2023-09-16 02:24:01 +00:00
parent a795c2fe60
commit eeecd5cdfb
3 changed files with 3 additions and 3 deletions

View File

@@ -1 +1 @@
42f39343647f68371989628c3c24da8f2ba31171
b4e2d26ea7cc27005a6d218b205d0d837b837cbc

View File

@@ -18,7 +18,7 @@ if [ -d $TMP_DIR ]; then
fi
BASENAME=${1##*/}
LIB=$(realpath $1)
LIB=$( cd "$(dirname "$1")" ; pwd -P )/$BASENAME
mkdir $TMP_DIR
cp $LIB $TMP_DIR

View File

@@ -6,7 +6,7 @@ SCRIPT_DIR=$(dirname $path)
TMP_DIR="$SCRIPT_DIR/strip_static_lib_fat_tmp"
BASENAME=${1##*/}
LIB=$(realpath $1)
LIB=$( cd "$(dirname "$1")" ; pwd -P )/$BASENAME
shift
if [ -d $TMP_DIR ]; then