mirror of
https://github.com/rive-app/rive-ios.git
synced 2026-01-18 17:11:28 +01:00
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:
@@ -1 +1 @@
|
||||
42f39343647f68371989628c3c24da8f2ba31171
|
||||
b4e2d26ea7cc27005a6d218b205d0d837b837cbc
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user