6 lines
186 B
Bash
Executable File
6 lines
186 B
Bash
Executable File
#!/bin/bash -eu
|
|
# -e: Exit immediately if a command exits with a non-zero status.
|
|
# -u: Treat unset variables as an error when substituting.
|
|
|
|
echo "no deployment step implemented (yet)"
|