Skip to content

Commit

Permalink
Don't use realpath in the workflows
Browse files Browse the repository at this point in the history
realpath isn't on some of the mac runners

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

Co-authored-by: Chris Dalton <[email protected]>
  • Loading branch information
csmartdalton and csmartdalton committed Sep 16, 2023
1 parent a795c2f commit eeecd5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
42f39343647f68371989628c3c24da8f2ba31171
b4e2d26ea7cc27005a6d218b205d0d837b837cbc
2 changes: 1 addition & 1 deletion scripts/strip_static_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/strip_static_lib_fat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit eeecd5c

Please sign in to comment.