File tree 2 files changed +2
-3
lines changed
fixtures/basic_web_8.0/bin
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -euo pipefail
4
4
5
5
# Check that all dynamically linked libraries exist in the run image
6
6
INSTALL_DIR=" $( command -v dotnet) "
7
- ldd_output=$( find " ${INSTALL_DIR} " -type f,l \( -name ' dotnet' \) -exec ldd ' {}' +)
7
+ ldd_output=$( find " ${INSTALL_DIR} " -type f,l \( -name ' dotnet' -o -name ' *.so* ' \) -exec ldd ' {}' +)
8
8
if grep ' not found' <<< " ${ldd_output}" | sort --unique; then
9
9
echo " The above dynamically linked libraries were not found!"
10
10
exit 1
Original file line number Diff line number Diff line change 59
59
app . deploy do |app |
60
60
expect ( clean_output ( app . output ) ) . to include ( <<~OUTPUT )
61
61
remote: ! Invalid MSBuild verbosity level
62
- remote: !
62
+ remote: !
63
63
remote: ! The `MSBUILD_VERBOSITY_LEVEL` environment variable value (`invalid`)
64
64
remote: ! is invalid. Did you mean one of the following supported values?
65
- remote: !
66
65
remote: ! d
67
66
remote: ! detailed
68
67
remote: ! diag
You can’t perform that action at this time.
0 commit comments