Skip to content

Commit

Permalink
try using dag hash for build cach
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Jan 5, 2022
1 parent 7dd561d commit 92a6ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paks/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def create(self, specs, key=None):
if not key:
key = get_gpg_key()
format_string = " ".join(
["%s@%s/%s" % (s.name, s.version, s.build_hash()) for s in specs]
["%s@%s/%s" % (s.name, s.version, s.dag_hash()) for s in specs]
)

command = ["create", "-r", "-a"]
Expand Down

0 comments on commit 92a6ca2

Please sign in to comment.