2020-09-08 11:29:34 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
2020-10-09 14:25:34 -07:00
|
|
|
|
2020-09-08 11:29:34 -05:00
|
|
|
cd "${ROOT}"
|
2020-10-09 14:25:34 -07:00
|
|
|
|
2020-10-14 09:16:02 -04:00
|
|
|
exec tilt up -f ./hack/lib/tilt/Tiltfile "$@"
|