diff options
-rwxr-xr-x | ci/run_tests.bat | 2 | ||||
-rwxr-xr-x | ci/run_tests.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index 99d0296..482cf79 100755 --- a/ci/run_tests.bat +++ b/ci/run_tests.bat @@ -18,5 +18,5 @@ if errorlevel 1 exit 1 ..\..\..\fpm\build\gfortran_debug\app\fpm build if errorlevel 1 exit 1 -.\hello_world +.\build\gfortran_debug\hello_world if errorlevel 1 exit 1 diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 59724d5..e046910 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -8,4 +8,4 @@ fpm run build/gfortran_debug/app/fpm cd ../test/example_packages/hello_world ../../../fpm/build/gfortran_debug/app/fpm build -./hello_world +./build/gfortran_debug/hello_world |