mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-12 06:17:27 -08:00
Merge pull request #7428 from roidelapluie/reposync
repo_sync: fix variable names
This commit is contained in:
commit
27f89ac651
|
@ -59,10 +59,10 @@ process_repo() {
|
|||
|
||||
local needs_update=0
|
||||
for source_file in ${SYNC_FILES}; do
|
||||
source_checksum="$(sha256sum "${souce_dir}/${source_file}" | cut -d' ' -f1)"
|
||||
source_checksum="$(sha256sum "${source_dir}/${source_file}" | cut -d' ' -f1)"
|
||||
|
||||
target_file="$(curl -s --fail "https://raw.githubusercontent.com/${org_repo}/master/${source_file}")"
|
||||
if [[ -z "${target_makefile}" ]]; then
|
||||
if [[ -z "${target_file}" ]]; then
|
||||
echo "${source_file} doesn't exist in ${org_repo}"
|
||||
continue
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue