Skip to content

Commit

Permalink
Fixed build fail on Linux at step Install yamlpath running `./ci/gi…
Browse files Browse the repository at this point in the history
…thub/install_yamlpath.sh`.
  • Loading branch information
end2endzone committed Aug 4, 2024
1 parent 8def7fa commit 8d742ff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions ci/linux/install_yamlpath.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ set -e
# https://github.com/wwkimball/yamlpath
# https://pypi.org/project/yamlpath/

# Validate if python launcher is installed
which py.exe
echo Validate if python launcher is installed
which py
echo Found python interpreter
python --version
echo

# Validate if pip is installed
which pip.exe
echo Validate if pip is installed
which pip
echo

# Installing yamlpath.
Expand Down
4 changes: 2 additions & 2 deletions ci/windows/install_yamlpath.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:: https://github.com/wwkimball/yamlpath
:: https://pypi.org/project/yamlpath/

:: Validate if python launcher is installed
echo Validate if python launcher is installed
where py.exe >NUL 2>NUL
if errorlevel 1 (
echo Command failed. Please install python and python launcher to continue.
Expand All @@ -14,7 +14,7 @@ echo Found python interpreter
python --version
echo.

:: Validate if pip is installed
echo Validate if pip is installed
where pip.exe >NUL 2>NUL
if errorlevel 1 (
echo Command failed. Please install pip ^(Package Installer Python^) to continue.
Expand Down

0 comments on commit 8d742ff

Please sign in to comment.