mirror of
https://github.com/cdr/code-server.git
synced 2025-12-09 09:55:30 +01:00
14 lines
205 B
Bash
Executable file
14 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 "$@"
|