Skip to content

Commit

Permalink
#592 fix cache file creation
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Jun 19, 2023
1 parent 09df991 commit 75eca88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/deployment-cli-tools/ch_cli_tools/codefresh.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def image_cache_filename(image):
cache_dir = "/codefresh/volume/.cache"
if not os.path.exists(cache_dir):
os.makedirs(cache_dir)
return join(cache_dir, image)
return join(cache_dir, image.split("/")[-1])

def write_env_file(helm_values: HarnessMainConfig, filename):
env = {}
Expand Down

0 comments on commit 75eca88

Please sign in to comment.