1 2 3 4 5 6 7 8 9 10 11
#!/bin/env bash set -exuo pipefail command -v zip || exit 1 rm -f app.zip pushd app zip -r ../app.zip . popd