:<<-get.taxcloud.dev-kit get.taxcloud.com by running this document with: curl https://get.taxcloud.com | bash get.taxcloud.dev-kit #!/usr/bin/env bash set -euo pipefail DK_HOME="${DK_HOME:-$HOME/.dev-kit}" REPO_URL="${DK_REPO_URL:-https://github.com/FedTax/.dev-kit.git}" if [ -d "$DK_HOME/.git" ]; then printf 'Updating .dev-kit at %s...\n' "$DK_HOME" git -C "$DK_HOME" pull --ff-only else printf 'Cloning .dev-kit into %s...\n' "$DK_HOME" git clone --depth=1 "$REPO_URL" "$DK_HOME" fi exec "$DK_HOME/bootstrap.sh"