We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e954ab0 commit 8a80e19Copy full SHA for 8a80e19
releases/latest/kernel-slim/helpers/build/internal/utils.sh
@@ -17,7 +17,7 @@ function showLogs() {
17
}
18
19
function installFixes() {
20
- if [ ! -f "/logs/fixes.log" ] && ls /opt/$WLP_TYPE/fixes/*.jar 1> /dev/null 2>&1; then
+ if [ ! -f "/logs/fixes.log" ] && ls "/opt/$WLP_TYPE/fixes"/*.jar 1> /dev/null 2>&1; then
21
find /opt/$WLP_TYPE/fixes -type f -name "*.jar" -print0 | sort -z | xargs -0 -n 1 -r -I {} java -jar {} --installLocation $WLP_INSTALL_DIR
22
echo "installFixes has been run" > /logs/fixes.log
23
fi
0 commit comments