Skip to content

Commit

Permalink
Merge pull request #202 from bruin-data/patch/force-ingestr-install
Browse files Browse the repository at this point in the history
force
  • Loading branch information
albertobruin authored Nov 13, 2024
2 parents 2aa4a18 + 0d7548b commit 1b6b590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/python/uv.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (u *UvPythonRunner) RunIngestr(ctx context.Context, args []string, repo *gi
ingestrPackageName := "ingestr@" + ingestrVersion
err = u.Cmd.Run(ctx, repo, &command{
Name: "uv",
Args: []string{"tool", "install", "--quiet", "--python", pythonVersionForIngestr, ingestrPackageName},
Args: []string{"tool", "install", "--force", "--quiet", "--python", pythonVersionForIngestr, ingestrPackageName},
})
if err != nil {
return errors.Wrap(err, "failed to install ingestr")
Expand Down

0 comments on commit 1b6b590

Please sign in to comment.