mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
8 lines
155 B
Bash
Executable File
8 lines
155 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Will fail because of a warning
|
|
dotnet build
|
|
|
|
# Pretend it didn't fail, so extraction succeeds (which doesn't treat warnings as errors)
|
|
exit 0
|