Skip to content

Commit

Permalink
Added Rosseta support for existing Linux VMs (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
apachont committed Jan 23, 2023
1 parent ed599a5 commit d76ea05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions builder/tart/step_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ func (s *stepRun) Run(ctx context.Context, state multistep.StateBag) multistep.S
if config.Recovery {
runArgs = append(runArgs, "--recovery")
}
if config.Rosetta != "" {
runArgs = append(runArgs, fmt.Sprintf("--rosetta=%s", config.Rosetta))
}
cmd := exec.Command("tart", runArgs...)
stdout := bytes.NewBufferString("")
cmd.Stdout = stdout
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

var (
// Version is the main version number that is being run at the moment.
Version = "0.6.2"
Version = "0.6.3"

// VersionPrerelease is A pre-release marker for the Version. If this is ""
// (empty string) then it means that it is a final release. Otherwise, this
Expand Down

0 comments on commit d76ea05

Please sign in to comment.