Skip to content
Snippets Groups Projects
Commit 19b1dd78 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: fstring patch

parent e1446da1
No related branches found
No related tags found
1 merge request!585feat: eic-spack dd4hep-pr1080
This commit is part of merge request !585. Comments created here will be created in the context of that merge request.
......@@ -100,7 +100,7 @@ if __name__ == '__main__':
## patches
if cfg.get('patches'):
for patch in cfg['patches']:
cmd = ['curl -L {patch} | patch -p1 -d/tmp/det']
cmd = [f'curl -L {patch} | patch -p1 -d/tmp/det']
print(' '.join(cmd))
subprocess.check_call(' '.join(cmd), shell=True)
## build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment