Skip to content

Commit

Permalink
use bash to execute the file
Browse files Browse the repository at this point in the history
  • Loading branch information
jarededwards committed Nov 19, 2024
1 parent 0994b4b commit be0f08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/k8s/k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ func BuildJob(downloadURL, name string) (*batchv1.Job, error) {
{
Name: fmt.Sprintf("download-%s", name),
Image: "bash:5.2.2",
Command: []string{"/script/entrypoint.sh"},
Command: []string{"bash", "-c", "/script/entrypoint.sh"},
Args: []string{
downloadURL,
"/output",
Expand Down

0 comments on commit be0f08d

Please sign in to comment.