Merge pull request #4062 from wanyaoqi/bugfix/wyq/docker-push

bugfix: fix docker push script component name
This commit is contained in:
Zexi Li
2019-12-09 15:47:52 +08:00
committed by GitHub

View File

@@ -38,8 +38,8 @@ build_bin() {
}
build_bundle_libraries() {
for component in 'host' 'host-deployer'; do
if [ $1 == $component ]; then
for bundle_component in 'host' 'host-deployer'; do
if [ $1 == $bundle_component ]; then
$CUR_DIR/bundle-libraries.sh _output/bin/bundles/$1 _output/bin/$1
break
fi