mirror of
https://github.com/coder/coder.git
synced 2025-07-12 00:14:10 +00:00
fix: use fmt.Fprintln to print workspaces table (#1122)
This commit is contained in:
@ -71,7 +71,7 @@ func workspaceList() *cobra.Command {
|
|||||||
workspace.Outdated,
|
workspace.Outdated,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
_, err = fmt.Fprintf(cmd.OutOrStdout(), tableWriter.Render())
|
_, err = fmt.Fprintln(cmd.OutOrStdout(), tableWriter.Render())
|
||||||
return err
|
return err
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user