This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# safety switch, exit script if there's error. Full command of shortcut `set -e` | |
set -o errexit | |
# safety switch, uninitialized variables will stop script. Full command of shortcut `set -u` | |
set -o nounset | |
# tear down function | |
teardown() | |
{ |