File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
git-labview-integration-posix
git-labview-integration-windows Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11set -eu
22
3- function absolutize_headless_relative_posix_path {
3+ function absolutize_posix_path {
44 local ORIG=" $1 "
55 local PWD_GIVEN=" "
66 if test " $# " -ge 2; then
@@ -20,5 +20,5 @@ function absolutize_headless_relative_posix_path {
2020function fix_tool_input_path {
2121 local PATH_TO_FIX=" $1 "
2222 local PROJECT_ROOT_POSIX=" $2 "
23- absolutize_headless_relative_posix_path " $PATH_TO_FIX " " $PROJECT_ROOT_POSIX "
23+ absolutize_posix_path " $PATH_TO_FIX " " $PROJECT_ROOT_POSIX "
2424}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ function posixize_windows_path {
88 echo $1 | sed -r ' s/^(["' " '" ' ]*)([A-Za-z]):/\1\/\L\2/' | sed ' s/\\/\//g'
99}
1010
11- function absolutize_headless_relative_windows_path {
11+ function absolutize_windows_path {
1212 local ORIG=" $1 "
1313 local PWD_GIVEN=" "
1414 if test " $# " -ge 2; then
@@ -26,5 +26,5 @@ function absolutize_headless_relative_windows_path {
2626function fix_tool_input_path {
2727 local PATH_TO_FIX=" $1 "
2828 local PROJECT_ROOT_WINDOWS=" ${2} "
29- absolutize_headless_relative_windows_path " $( windowsize_posix_path " $PATH_TO_FIX " ) " " $PROJECT_ROOT_WINDOWS "
29+ absolutize_windows_path " $( windowsize_posix_path " $PATH_TO_FIX " ) " " $PROJECT_ROOT_WINDOWS "
3030}
You can’t perform that action at this time.
0 commit comments