bundle-publish-register-all failed if template already registered (#3406)

Remove retry logic in the script

Co-authored-by: Tamir Kamara <26870601+tamirkamara@users.noreply.github.com>
This commit is contained in:
Marcus Robinson 2023-04-17 14:39:30 +01:00 коммит произвёл GitHub
Родитель 75b24faf59
Коммит c75bbef95e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 6 удалений

Просмотреть файл

@ -15,14 +15,10 @@ register_template() {
if [ -f "$template_dir"/porter.yaml ]; then
if [ "$bundle_type" == "$parent_bundle" ]; then
echo "Registering $bundle_type bundle $bundle_name"
until make "${bundle_type%s}"_bundle BUNDLE="$bundle_name"; do
[[ $? == 2 ]] || break
done
make "${bundle_type%s}"_bundle BUNDLE="$bundle_name"
else
echo "Registering user resource bundle $bundle_name for workspace service $parent_bundle"
until make user_resource_bundle BUNDLE="$bundle_name" WORKSPACE_SERVICE="$parent_bundle"; do
[[ $? == 2 ]] || break
done
make user_resource_bundle BUNDLE="$bundle_name" WORKSPACE_SERVICE="$parent_bundle"
fi
fi
}