Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpintarelli committed Jun 27, 2024
1 parent 7780d39 commit e7e10dd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions stackinator/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,7 @@ def generate(self, recipe):

# get the spack commit
git_commit_result = subprocess.run(
["git", "-C", spack_path, "rev-parse", "HEAD"],
shell=False,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE
["git", "-C", spack_path, "rev-parse", "HEAD"], shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
spack_meta = {"commit": git_commit_result.stdout.strip(), "url": spack["repo"]}

Expand Down

0 comments on commit e7e10dd

Please sign in to comment.