6 lines
96 B
Bash
6 lines
96 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o errexit -o nounset -o pipefail
|
||
|
|
||
|
echo "Demostration delivery target"
|