Skip to content

Commit 8ac1040

Browse files
authored
update-crt script update (#482)
* specify search for pom.xml files instead of *.xml files
1 parent 15c04d9 commit 8ac1040

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

update-crt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def update_samples():
113113
for sample_folder in sample_folders:
114114
sample_files = os.walk(sample_folder).__next__()[2]
115115
for file in sample_files:
116-
if file.endswith(".xml"):
116+
if file.endswith("pom.xml"):
117117
update(filepath=sample_folder + "/" + file,
118118
preceded_by=r'<artifactId>aws-iot-device-sdk</artifactId>\s*<version>',
119119
followed_by=r'</version>',

0 commit comments

Comments
 (0)