File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 45
45
find "$CHARTS_DIR" -mindepth 1 -maxdepth 1 -type d ! -name "common" -exec basename {} \; | while read -r subfolder; do
46
46
for file in "$CHARTS_DIR/$subfolder"/*values.yaml; do
47
47
if [ -f "$file" ]; then
48
- if [ "$file" == *"nv-values.yaml" ] || [ "$file" == *"hpa-values.yaml" ]; then
48
+ if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ] ]; then
49
49
continue
50
50
fi
51
51
filename=$(basename "$file" .yaml)
60
60
find "$CHARTS_DIR/common" -mindepth 1 -maxdepth 1 -type d -exec basename {} \; | while read -r subfolder; do
61
61
for file in "$CHARTS_DIR/common/$subfolder"/*values.yaml; do
62
62
if [ -f "$file" ]; then
63
- if [ "$file" == *"nv-values.yaml" ] || [ "$file" == *"hpa-values.yaml" ]; then
63
+ if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ] ]; then
64
64
continue
65
65
fi
66
66
filename=$(basename "$file" .yaml)
Original file line number Diff line number Diff line change 49
49
for chart in ${e2e_charts}; do
50
50
for file in "$CHARTS_DIR/$chart"/*values.yaml; do
51
51
if [ -f "$file" ]; then
52
- if [ "$file" == *"nv-values.yaml" ] || [ "$file" == *"hpa-values.yaml" ]; then
52
+ if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ] ]; then
53
53
continue
54
54
fi
55
55
filename=$(basename "$file" .yaml)
64
64
for chart in ${common_charts}; do
65
65
for file in "$CHARTS_DIR/common/$chart"/*values.yaml; do
66
66
if [ -f "$file" ]; then
67
- if [ "$file" == *"nv-values.yaml" ] || [ "$file" == *"hpa-values.yaml" ]; then
67
+ if [[ "$file" == *"nv-values.yaml" ]] || [[ "$file" == *"hpa-values.yaml" ] ]; then
68
68
continue
69
69
fi
70
70
filename=$(basename "$file" .yaml)
You can’t perform that action at this time.
0 commit comments