hmm
This commit is contained in:
parent
ee1101e9bf
commit
ed45a031e7
|
@ -77,12 +77,11 @@ runs:
|
||||||
|
|
||||||
lookup_changed_charts() {
|
lookup_changed_charts() {
|
||||||
local commit="$1"
|
local commit="$1"
|
||||||
local $charts_dir="charts/**"
|
|
||||||
|
|
||||||
local changed_files
|
local changed_files
|
||||||
changed_files=$(git diff --find-renames --name-only "$commit" -- "$charts_dir" | grep "Chart.yaml")
|
changed_files=$(git diff --find-renames --name-only "$commit" -- 'charts/**' | grep "Chart.yaml")
|
||||||
|
|
||||||
local depth=$(( $(tr "/" "\n" <<< "$charts_dir" | sed '/^\(\.\)*$/d' | wc -l) + 1 ))
|
local depth=$(( $(tr "/" "\n" <<< 'charts/**' | sed '/^\(\.\)*$/d' | wc -l) + 1 ))
|
||||||
local fields="1-${depth}"
|
local fields="1-${depth}"
|
||||||
|
|
||||||
cut -d '/' -f "$fields" <<< "$changed_files" | uniq | filter_charts
|
cut -d '/' -f "$fields" <<< "$changed_files" | uniq | filter_charts
|
||||||
|
|
|
@ -22,7 +22,7 @@ sources:
|
||||||
- https://github.com/bitnami/bitnami-docker-memcached
|
- https://github.com/bitnami/bitnami-docker-memcached
|
||||||
- http://memcached.org/
|
- http://memcached.org/
|
||||||
type: application
|
type: application
|
||||||
version: 2.0.28
|
version: 2.0.29
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- database
|
- database
|
||||||
|
|
Loading…
Reference in New Issue