[f8624c]: / .cookiecutter / scripts / import.sh

Download this file

10 lines (8 with data), 261 Bytes

1
2
3
4
5
6
7
8
9
#!/bin/bash
set -euo pipefail
# Import bash functions from files
for filename in "create_bucket.sh" "create_repo.sh" "install_metaflow_aws.sh" "conda_activate.sh";
do
# shellcheck disable=SC1090
source "$(dirname "${BASH_SOURCE[0]}")/$filename";
done;