Skip to content

Commit

Permalink
Add scripts for matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquebelarte committed Jan 28, 2025
1 parent c280d46 commit 82f4127
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/kernels.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Get DTK tags
response = requests.get(dtk_registry_api)
kernel_json = (response.json())
kernel_list = "kernel-list.json"
kernel_list = "data/kernel-list.json"
# Save tags in file
with open(kernel_list, "w+") as output:
json.dump(kernel_json, output)
Expand Down
2 changes: 1 addition & 1 deletion scripts/md5mod.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import hashlib
def createmd5(filetocheck):
filename = filetocheck
filename = "data/" + filetocheck
checksumfile = filetocheck[:-4] + "md5"
md5_hash = hashlib.md5()
with open(filename,"rb") as f:
Expand Down

0 comments on commit 82f4127

Please sign in to comment.