We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f4295e commit d239fe9Copy full SHA for d239fe9
1 file changed
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