File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -236,23 +236,19 @@ if(FIREBASE_CPP_USE_PRIOR_GRADLE_BUILD)
236
236
# In case there are multiple matches, take the one with the newest timestamp.
237
237
set (newest_timestamp 0 )
238
238
foreach (possible_prev_build_dir IN LISTS possible_prev_build_dirs )
239
- message ("CONSIDERING ${possible_prev_build_dir} " )
240
239
if (IS_DIRECTORY ${possible_prev_build_dir} )
241
240
if (EXISTS "${possible_prev_build_dir} /${header_to_scan_for} " )
242
241
# Check if it's newer than any other files.
243
- message ("FOUND ${possible_prev_build_dir} /${header_to_scan_for} " )
244
242
file (TIMESTAMP "${possible_prev_build_dir} /${header_to_scan_for} " timestamp "%s" )
245
- message ("GOT TIMESTAMP: ${timestamp} " )
246
243
if (${timestamp} GREATER ${newest_timestamp} )
247
- message ("USING ${possible_prev_build_dir} " )
248
244
set (APP_BINARY_DIR ${possible_prev_build_dir} )
249
245
set (newest_timestamp ${timestamp} )
250
246
endif ()
251
247
endif ()
252
248
endif ()
253
249
endforeach ()
254
250
if (IS_DIRECTORY "${APP_BINARY_DIR} " )
255
- message ("Found previous Firebase App build in ${APP_BINARY_DIR} " )
251
+ message (STATUS "Found previous Firebase App build in ${APP_BINARY_DIR} " )
256
252
else ()
257
253
message (FATAL_ERROR "Could not find previous Firebase App build under ${prev_build_path} " )
258
254
endif ()
You can’t perform that action at this time.
0 commit comments