Skip to content

Commit

Permalink
try again to get absolute path
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgnhnt96 committed Jan 29, 2024
1 parent 7f2c716 commit 0def4af
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions packages/script_runner/scripts/compile_blob.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,6 @@ get_absolute_path() {
local path="$1"
path="$(cd "$(dirname "$path")" && pwd)/$(basename "$path")"

# Normalize path based on platform
case "$PLATFORM" in
"linux" | "macos")
path=$(realpath "$path")
;;
"windows")
path=$(cygpath -w -a "$path")
;;
esac

echo "$path"
}

Expand Down

0 comments on commit 0def4af

Please sign in to comment.