Skip to content
Snippets Groups Projects
Commit c02af6c4 authored by Holger Brendebach's avatar Holger Brendebach
Browse files

remove realpath option -P, --physical as it is the default and NOT supported by other OS versions

parent 32c9e524
Branches master
No related tags found
No related merge requests found
......@@ -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 $$
......
......@@ -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 $$
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment