From c02af6c4b41113f4f8fd6f28e081e4013890e746 Mon Sep 17 00:00:00 2001 From: Holger Brendebach <gitlab@brendy.de> Date: Fri, 4 Apr 2025 11:36:46 +0200 Subject: [PATCH] remove realpath option -P, --physical as it is the default and NOT supported by other OS versions --- scripts/deploy_all_pipelines.sh | 2 +- scripts/symlinks_for_harmonization.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy_all_pipelines.sh b/scripts/deploy_all_pipelines.sh index 77fb65d..0c16c79 100755 --- a/scripts/deploy_all_pipelines.sh +++ b/scripts/deploy_all_pipelines.sh @@ -88,7 +88,7 @@ parse_args() { } ## Source Helper Functions -------------------------------------------------- -script_real=$(realpath -P "${BASH_SOURCE[0]}") +script_real=$(realpath "${BASH_SOURCE[0]}") script_path=$(dirname "$script_real") script_name=$(basename "$script_real") [[ ! -f "$script_path/helper_functions.sh" ]] && echo "[ERROR] File not found: $script_path/helper_functions.sh" && kill -s TERM $$ diff --git a/scripts/symlinks_for_harmonization.sh b/scripts/symlinks_for_harmonization.sh index 5e9a032..192d54d 100755 --- a/scripts/symlinks_for_harmonization.sh +++ b/scripts/symlinks_for_harmonization.sh @@ -72,7 +72,7 @@ parse_args() { } ## Source Helper Functions -------------------------------------------------- -script_real=$(realpath -P "${BASH_SOURCE[0]}") +script_real=$(realpath "${BASH_SOURCE[0]}") script_path=$(dirname "$script_real") script_name=$(basename "$script_real") [[ ! -f "$script_path/helper_functions.sh" ]] && echo "[ERROR] File not found: $script_path/helper_functions.sh" && kill -s TERM $$ -- GitLab