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
{{ message }}
This repository was archived by the owner on Jan 5, 2023. It is now read-only.
log.Fatalf("Unable to read source archive directory %s.", srcDir)
44
+
}
45
+
ifempty {
46
+
log.Printf("No Go code seen; continuing to try other builds.")
47
+
returnfalse
48
+
}
49
+
returntrue
50
+
} else {
51
+
log.Fatalf("No source directory set.\nThis binary should not be run manually; instead, use the CodeQL CLI or VSCode extension. See https://securitylab.github.com/tools/codeql.")
52
+
returnfalse
53
+
}
54
+
}
55
+
56
+
// tryBuildIfExists tries to run the command `cmd args...` if the file `buildFile` exists and is not
57
+
// a directory. Returns true if the command was successful and false if not.
0 commit comments