You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ('.cpp'inbasename) or ('.c'inbasename) or ('.o'inbasename) or ('.so'inbasename):
348
+
# skip non-executable files
349
+
# this happens when we source from windows systems -- cpp files are seen as executables
350
+
continue
351
+
347
352
# check we have the source code too
348
-
assertos.path.isdir(execSrcDir)
353
+
assertos.path.isdir(execSrcDir), f'Could not find source dir for executable {basename} at expected location: {execSrcDir} ({SRC_DIR}/{basename}) entry: {entry}'
0 commit comments