Skip to content

Commit c7a906b

Browse files
authored
atlasexec: fix multi file rebase (ariga#3681)
1 parent f5d871f commit c7a906b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlasexec/atlas_migrate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ func (c *Client) MigrateRebase(ctx context.Context, params *MigrateRebaseParams)
599599
if params.DirURL != "" {
600600
args = append(args, "--dir", params.DirURL)
601601
}
602-
args = append(args, strings.Join(params.Files, " "))
602+
args = append(args, params.Files...)
603603
_, err := c.runCommand(ctx, args)
604604
return err
605605
}

0 commit comments

Comments
 (0)