We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d8b964 commit 0ca444bCopy full SHA for 0ca444b
hack/build-images.sh
@@ -39,6 +39,7 @@ _main() {
39
_buildImage "" $_version-slim
40
41
for _runtimePath in "$ROOT_FOLDER/runtimes/"*/; do
42
+ [ -d "$_runtimePath" ] || continue
43
_buildRuntimeImage $_runtimePath $_version
44
done
45
}
hack/build-wheels.sh
@@ -44,6 +44,7 @@ _main() {
_buildWheel . $_outputPath
46
for _runtime in "$ROOT_FOLDER/runtimes/"*/; do
47
+ [ -d "$_runtime" ] || continue
48
echo "---> Building MLServer runtime: '$_runtime'"
49
_buildWheel $_runtime $_outputPath
50
0 commit comments