From 983b9ba0d3711631dfc64dbd465a499d614b2983 Mon Sep 17 00:00:00 2001 From: Michael Jenkins Date: Fri, 1 Oct 2021 14:55:00 -0700 Subject: [PATCH] Add files for 03_06 --- 03_05.md => 03_06.md | 6 +++--- MAC_LINUX_DOCKER.md | 4 ++-- WINDOWS.md | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) rename 03_05.md => 03_06.md (81%) diff --git a/03_05.md b/03_06.md similarity index 81% rename from 03_05.md rename to 03_06.md index c002222..5ee35e7 100644 --- a/03_05.md +++ b/03_06.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 03-05: String Parameters +# Learning Jenkins, 03-06: String Parameters Create a freestyle job with one build step. # WINDOWS SYSTEMS @@ -8,7 +8,7 @@ If you are running Jenkins on a Windows system: 2. Enter the following for the command: ``` @echo off -@echo VERSION_NUMBER = %VERSION_NUMBER% +@echo ENVIRONMENT = %ENVIRONMENT% ``` [Follow this link for more details on Windows](WINDOWS.md) @@ -20,7 +20,7 @@ If you are running Jenkins on MacOS, Linux, or Docker: 2. Enter the following for the command: ``` #!/bin/bash -echo "VERSION_NUMBER = $VERSION_NUMBER" +echo "ENVIRONMENT = $ENVIRONMENT" ``` [Follow this link for more details on MacOS, Linux, and Docker](MAC_LINUX_DOCKER.md) diff --git a/MAC_LINUX_DOCKER.md b/MAC_LINUX_DOCKER.md index d03d712..0065f5c 100644 --- a/MAC_LINUX_DOCKER.md +++ b/MAC_LINUX_DOCKER.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 03-05: String Parameters +# Learning Jenkins, 03-06: String Parameters Create a freestyle job with one build step. # MacOS, Linux, and Docker @@ -8,7 +8,7 @@ If you are running Jenkins on MacOS, Linux, or Docker: 2. Enter the following for the command: ``` #!/bin/bash -echo "VERSION_NUMBER = $VERSION_NUMBER" +echo "ENVIRONMENT = $ENVIRONMENT" ``` # Troubleshooting Errors diff --git a/WINDOWS.md b/WINDOWS.md index 62e7b19..9a2c022 100644 --- a/WINDOWS.md +++ b/WINDOWS.md @@ -1,4 +1,4 @@ -# Learning Jenkins, 03-05: String Parameters +# Learning Jenkins, 03-06: String Parameters Create a freestyle job with one build step. # WINDOWS SYSTEMS @@ -8,7 +8,7 @@ If you are running Jenkins on a Windows system: 2. Enter the following for the command: ``` @echo off -@echo VERSION_NUMBER = %VERSION_NUMBER% +@echo ENVIRONMENT = %ENVIRONMENT% ``` # Troubleshooting Errors