Skip to content

Commit 0ca7166

Browse files
Aart KleinendorstAart Kleinendorst
Aart Kleinendorst
authored and
Aart Kleinendorst
committed
Merge branch 'main' of github.com:dialog-semiconductor/BLE_SDK10_DA1459x_examples
2 parents 030f1aa + f458802 commit 0ca7166

File tree

4 files changed

+4
-879
lines changed

4 files changed

+4
-879
lines changed

.github/scripts/process_build.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ def findProjectFiles():
1111

1212
matches = []
1313
for root, dirnames, filenames in os.walk("."):
14+
if root == ".":
15+
continue
1416
for filename in fnmatch.filter(filenames, ".project"):
1517
matches.append(os.path.dirname(os.path.join(root, filename))[2:])
1618

@@ -30,8 +32,8 @@ def findProjectFiles():
3032

3133
outputDict = {"examples": [], "groups": []}
3234
for proj in projectFolderList:
33-
34-
binPath = glob.glob( os.path.join(proj,'*-Debug_QSPI','*.bin'))
35+
36+
binPath = glob.glob( os.path.join(proj,'*-Debug_eFLASH','*.bin'))
3537

3638
if len(binPath) != 1:
3739
raise FileExistsError(proj)

0 commit comments

Comments
 (0)