Fix “rm: missing operand” in release script (#779)

This commit is contained in:
Ta-Ching Chen
2018-07-06 14:15:20 +08:00
committed by GitHub
parent 2504408803
commit 462db2f00c
+1 -2
View File
@@ -230,7 +230,7 @@ build_yamls() {
mkdir -p ${BUILDDIR}/yamls
pushd ${DIR}/charts
find . -iname *.~?~ | xargs rm
find . -iname *.~?~ | xargs -r rm
for c in fission-all fission-core
do
@@ -282,7 +282,6 @@ build_all() {
build_builder_image $version $date $gitcommit
build_logger_image $version
build_all_cli $version $date $gitcommit
build_charts $version
build_pre_upgrade_checks_image $version $date $gitcommit
}