create_addon: improve done message, a bit

This commit is contained in:
Sascha Kuehndel (InuSasha) 2018-08-06 19:12:55 +02:00
parent 0c82bdadab
commit caa24ac9ad
No known key found for this signature in database
GPG Key ID: 15FED89617B88D1B

View File

@ -159,6 +159,8 @@ pack_addon() {
sha256sum $ADDON_JENKINS_ADDON_NAME.zip > $ADDON_JENKINS_ADDON_NAME.zip.sha256
)
printf "%${BUILD_INDENT}c $(print_color CLR_INFO "*** creating $ADDON_JENKINS_ADDON_NAME.zip for Jenkins complete ***")\n" ' '>&$SILENT_OUT
else
printf "%${BUILD_INDENT}c $(print_color CLR_INFO "*** creating $PKG_ADDON_ID complete ***")\n" ' '>&$SILENT_OUT
fi
fi
}
@ -300,7 +302,6 @@ for addon in $(tr " " "\n" <<< $addons | sort -u); do
addons_failed+="$addon "
printf "$(print_color CLR_ERROR "ADDON FAILED $addon")\n" ' '>&$SILENT_OUT
else
printf "$(print_color CLR_INFO "ADDON SUCCESS $addon")\n" ' '>&$SILENT_OUT
if [ "$remove_success_logs" = "true" ]; then
rm -f $log_file
fi