Skip to content

Commit b076ced

Browse files
authored
Fix MLServer image build (#2310)
In hack/build-wheels, only consider the directories from MLServer/runtimes (we've added an __init__.py file for pytest)
1 parent c7e97cb commit b076ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hack/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ _main() {
4343
echo "---> Building MLServer wheel"
4444
_buildWheel . $_outputPath
4545

46-
for _runtime in "$ROOT_FOLDER/runtimes/"*; do
46+
for _runtime in "$ROOT_FOLDER/runtimes/"*/; do
4747
echo "---> Building MLServer runtime: '$_runtime'"
4848
_buildWheel $_runtime $_outputPath
4949
done

0 commit comments

Comments
 (0)