mirror of
https://github.com/bitnami/charts.git
synced 2026-02-23 14:27:11 +08:00
9 lines
303 B
Bash
Executable File
9 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if git diff --name-only --cached | grep '/kubeapps/'; then
|
|
printf '\n\U1F6AB Commit cancelled\n\nKubeapps changes detected in this repository.\nPlease, implement them in the kubeapps repository (https://github.com/kubeapps/kubeapps/tree/master/chart/kubeapps).\n'
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|