Skip to content

Commit dc440ef

Browse files
committed
Fix print of CMake logging
1 parent 0b12f2a commit dc440ef

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

grantlee5/linuxdeploy-plugin-grantlee5.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,12 @@ EOF
9090

9191
cmake . &>cmake.log
9292

93+
if [[ "$VERBOSE" != "" ]]; then
94+
cat cmake.log
95+
fi
96+
9397
# clean up log if everything worked, otherwise it would be printed by the cleanup handler
94-
[[ "$VERBOSE" != "" ]] && rm cmake.log
98+
rm cmake.log
9599

96100
imported_location="$(cat imported-location)"
97101

0 commit comments

Comments
 (0)