Skip to content

Commit 0602e62

Browse files
authored
Merge pull request #1 from lesamouraipourpre/patch-1
Only use package_folder_prefix if there any subpackages
2 parents 94307ee + da3d0bc commit 0602e62

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)