Browse Source

Add files for 03_06

03_06
Michael Jenkins 4 years ago
parent
commit
983b9ba0d3
3 changed files with 7 additions and 7 deletions
  1. +3
    -3
      03_06.md
  2. +2
    -2
      MAC_LINUX_DOCKER.md
  3. +2
    -2
      WINDOWS.md

03_05.md → 03_06.md View File

@ -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)

+ 2
- 2
MAC_LINUX_DOCKER.md View File

@ -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


+ 2
- 2
WINDOWS.md View File

@ -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


Loading…
Cancel
Save