diff --git a/scripts/deploy_all_pipelines.sh b/scripts/deploy_all_pipelines.sh
index 77fb65d0f3bf6580b142681c8f6b6246dbab631c..0c16c79e8814deb48505066ed0a6beb5dca05ed7 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 5e9a0325f4323416a2e6580ca4dbd0a1b8ef70f9..192d54d50def17245d8bd98f321cc0120acbdfa1 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 $$