From d0ac0502e60fba974e7dd159947ca0151cadcb39 Mon Sep 17 00:00:00 2001 From: Michael Jenkins Date: Wed, 29 Sep 2021 21:45:24 -0700 Subject: [PATCH] Fix things up after merge from 02_06 --- 02_06.md => 02_07.md | 3 ++- MAC_LINUX_DOCKER.md | 3 ++- WINDOWS.md | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) rename 02_06.md => 02_07.md (92%) diff --git a/02_06.md b/02_07.md similarity index 92% rename from 02_06.md rename to 02_07.md index 7c278b1..3cd4c2a 100644 --- a/02_06.md +++ b/02_07.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 02-06: Run and Monitor Jobs +# Learning Jenkins, 02-07: Run and Monitor Jobs Use the console to create a freestyle job with one build step. # WINDOWS SYSTEMS @@ -12,6 +12,7 @@ for /L %%i in (1,1,30) do ( @echo %%i @ping localhost -n 2 >NUL ) +exit /b 1 ``` [Follow this link for more details on Windows](WINDOWS.md) diff --git a/MAC_LINUX_DOCKER.md b/MAC_LINUX_DOCKER.md index 143a172..72d419e 100644 --- a/MAC_LINUX_DOCKER.md +++ b/MAC_LINUX_DOCKER.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 02-06: Run and Monitor Jobs +# Learning Jenkins, 02-07: Run and Monitor Jobs Use the console to create a freestyle job with one build step. # MacOS, Linux, and Docker @@ -12,6 +12,7 @@ for i in {1..30}; do echo $i; sleep 1; done +exit 1 ``` # Troubleshooting Errors diff --git a/WINDOWS.md b/WINDOWS.md index aeb9b0e..dcbc19e 100644 --- a/WINDOWS.md +++ b/WINDOWS.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 02-06: Run and Monitor Jobs +# Learning Jenkins, 02-07: Run and Monitor Jobs Use the console to create a freestyle job with one build step. # WINDOWS SYSTEMS @@ -12,6 +12,7 @@ for /L %%i in (1,1,30) do ( @echo %%i @ping localhost -n 2 >NUL ) +exit /b 1 ``` # Troubleshooting Errors