10 lines
196 B
Bash
10 lines
196 B
Bash
#!/bin/bash
|
|
#
|
|
# Sample script showing how the yaml include-raw tag can be used
|
|
# to inline scripts that are maintained outside of the jenkins
|
|
# job yaml configuration.
|
|
|
|
echo "hello world"
|
|
|
|
exit 0
|