Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
oci: Fix multiple srcs support
Browse files Browse the repository at this point in the history
  • Loading branch information
elthariel committed Jun 3, 2021
1 parent f0f2804 commit 971df85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oci/oci.build_defs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def container_image(
if srcs:
context = "$STORE/context"
srcs_dict['context'] = srcs
cmds += [f'mkdir "{context}"', f'mv "$SRCS_CONTEXT" "{context}"']
cmds += [f'mkdir "{context}"', f'mv $SRCS_CONTEXT "{context}"']
return context, cmds

def build_using_dockerfile(srcs_dict:dict, cmds:list, base_image:str, context:str):
Expand Down

0 comments on commit 971df85

Please sign in to comment.