We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 175e54b commit 2e44eb3Copy full SHA for 2e44eb3
1 file changed
mozjs-sys/etc/sm-security-bump.py
@@ -26,18 +26,17 @@
26
27
download_from_taskcluster(changeset)
28
29
-subprocess.check_call(
30
- [
31
- "gh",
32
- "attestation",
33
- "verify",
34
- "mozjs.tar.xz",
35
- "allFunctions.txt.gz",
36
- "gcFunctions.txt.gz",
37
- "--repo",
38
- "servo/mozjs",
39
- ]
40
-)
+for file in ["mozjs.tar.xz", "allFunctions.txt.gz", "gcFunctions.txt.gz"]:
+ subprocess.check_call(
+ [
+ "gh",
+ "attestation",
+ "verify",
+ file,
+ "--repo",
+ "servo/mozjs",
+ ]
+ )
41
42
subprocess.check_call(
43
[
0 commit comments