get.porter.sh/porter@v1.3.0/build/testdata/bundles/wordpress/helpers.sh (about)

     1  #!/usr/bin/env bash
     2  set -euo pipefail
     3  
     4  install() {
     5    mkdir -p /cnab/app/outputs
     6    echo "topsecret-blog" >> /cnab/app/outputs/wordpress-password
     7  }
     8  
     9  ping() {
    10    echo ping
    11  }
    12  
    13  # Call the requested function and pass the arguments as-is
    14  "$@"