From 789dbb886f521e40011961407fd776376c71958e Mon Sep 17 00:00:00 2001 From: Spencer Nicholls <57418435+nichollsspencer@users.noreply.github.com> Date: Wed, 1 Dec 2021 09:24:11 -0600 Subject: [PATCH] Delete 03_05.md --- 03_05.md | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 03_05.md diff --git a/03_05.md b/03_05.md deleted file mode 100644 index c002222..0000000 --- a/03_05.md +++ /dev/null @@ -1,27 +0,0 @@ -# Learning Jenkins, 03-05: String Parameters -Create a freestyle job with one build step. - -# WINDOWS SYSTEMS -If you are running Jenkins on a Windows system: - -1. Select the `Execute Windows batch command` build step -2. Enter the following for the command: -``` -@echo off -@echo VERSION_NUMBER = %VERSION_NUMBER% -``` - -[Follow this link for more details on Windows](WINDOWS.md) - -# MacOS, Linux, and Docker -If you are running Jenkins on MacOS, Linux, or Docker: - -1. Select the `Execute shell` build step. -2. Enter the following for the command: -``` -#!/bin/bash -echo "VERSION_NUMBER = $VERSION_NUMBER" -``` - -[Follow this link for more details on MacOS, Linux, and Docker](MAC_LINUX_DOCKER.md) -