diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-04-15 16:47:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-15 16:47:59 -0400 |
commit | 78ca85cfe63998b47a1b15346fee93ec59057cbf (patch) | |
tree | 516f710409700e1bf5d471f79cb5a4871f44e5e9 /access_env_var.sh | |
parent | 01957741c8bb74cec6e72c734ba0b8589efa1f72 (diff) | |
download | jscu_refactor-78ca85cfe63998b47a1b15346fee93ec59057cbf.tar.gz |
Self test capability attempt (#44)
* Add access_env_var.sh script
Remove @Library directive after successfull CI test.
* Clean up
* Hook script to operate only on Jenkinsfile
Diffstat (limited to 'access_env_var.sh')
-rwxr-xr-x | access_env_var.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/access_env_var.sh b/access_env_var.sh new file mode 100755 index 0000000..b7a5b3f --- /dev/null +++ b/access_env_var.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +echo "This is the value of SECRET_VALUE" +echo "${SECRET_VALUE}" |