Skip to content

Commit 15c5a48

Browse files
authored
Merge pull request #186 from jfdenise/master
Fix for WFLY-13577, Warning when deleting non existing CLI warning file
2 parents c4891a7 + 809fce5 commit 15c5a48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jboss/container/wildfly/launch-config/config/added/launch/openshift-common.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function processErrorsAndWarnings() {
8484
log_warning "$line"
8585
done < "${CONFIG_WARNING_FILE}"
8686
fi
87-
rm "${CONFIG_WARNING_FILE}"
87+
rm -f "${CONFIG_WARNING_FILE}"
8888
if [ -s "${CONFIG_ERROR_FILE}" ]; then
8989
echo "Error applying ${CLI_SCRIPT_FILE_FOR_EMBEDDED} CLI script. Embedded server started successfully. The Operations were executed but there were unexpected values. See list of errors in ${CONFIG_ERROR_FILE}"
9090
while IFS= read -r line

0 commit comments

Comments
 (0)