cirruslabs / orchard

Orchestrator for running Tart Virtual Machines on a cluster of Apple Silicon devices
Other
194 stars 16 forks source link

Fixed `logs` gluing the lines together. #87

Closed grigorye closed 1 year ago

grigorye commented 1 year ago

Given:

$ orchard create vm v --startup-script 'for i in $(seq 1 10); do echo "$i."; done'

Before:

$ orchard logs vm v
1.2.3.4.5.6.7.8.9.10.$

After:

$ orchard-local logs vm v
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
$