Skip to content

Commit da3d0bc

Browse files
Only use package_folder_prefix if there any subpackages
`circuitpython-build-bundles` fails if called with no parameter for `--package_folder_prefix` This only includes the option once there is a submodule with a directory in it.
1 parent 94307ee commit da3d0bc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,10 @@ gawk -F '\n' '{ match($1, /(drivers|helpers)\/(.+)\/(.+)\:/, arr) ; if (length(a
3232
gawk '{ trimmed = substr($0, 1, length($0) - 2) ; print "\"" trimmed "\"" }'
3333
)
3434

35-
circuitpython-build-bundles --filename_prefix circuitpython-org-bundle --library_location libraries --library_depth 2 --package_folder_prefix "$P"
35+
if [ -z "$P" ]; then
36+
P=""
37+
else
38+
P="--package_folder_prefix $P"
39+
fi
40+
41+
circuitpython-build-bundles --filename_prefix circuitpython-org-bundle --library_location libraries --library_depth 2 "$P"

0 commit comments

Comments
 (0)