12 lines
101 B
Bash
Executable File
12 lines
101 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
main() {
|
|
set -eu
|
|
|
|
echo "-----> postdeploy says hi"
|
|
}
|
|
|
|
main
|