Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: daytona update command with elevated perms #1713

Merged
merged 4 commits into from
Jan 20, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix return
Signed-off-by: Ansuman Sahoo <[email protected]>
unsuman committed Jan 20, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 7e241f5846dfbe781cc9132cf295c48ab7dc1f4c
7 changes: 1 addition & 6 deletions pkg/cmd/update.go
Original file line number Diff line number Diff line change
@@ -90,12 +90,7 @@ var updateCmd = &cobra.Command{

fmt.Println("Updating to version", version, "from", currentVersion)

err = updateToVersion(version, changelog)
if err != nil {
return err
}

return nil
return updateToVersion(version, changelog)
},
}