6b92807cd7
Rename fixtures directory to job_fixtures to prepare for adding view_fixtures directory in the following commits. Change-Id: Ic20997cae020b542ddc22bf444fa6b92fbcae064
14 lines
214 B
Bash
14 lines
214 B
Bash
#!/bin/bash
|
|
#
|
|
# version 1.2 of the echo vars script
|
|
|
|
MSG="hello world"
|
|
VERSION="1.2"
|
|
|
|
[[ -n "${MSG}" ]] && {
|
|
# this next section is executed as one
|
|
echo "${MSG}"
|
|
echo "version: ${VERSION}"
|
|
exit 0
|
|
}
|