mirror of
https://github.com/coder/code-server.git
synced 2026-04-13 11:38:50 -05:00
15 lines
205 B
Bash
Executable File
15 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
if command -v helm && helm kubeval --help > /dev/null; then
|
|
helm kubeval ci/helm-chart
|
|
fi
|
|
|
|
cd "$OLDPWD"
|
|
}
|
|
|
|
main "$@"
|