Merge branch 'master' into serve-instances

This commit is contained in:
Lucien Greathouse
2017-12-17 22:12:04 -08:00
2 changed files with 6 additions and 2 deletions

View File

@@ -200,7 +200,9 @@ fn main() {
println!("Server listening on port {}", port);
loop {}
loop {
thread::park();
}
},
("pack", _) => {
eprintln!("'rojo pack' is not yet implemented!");

View File

@@ -92,6 +92,8 @@ impl VfsWatcher {
}
}
loop {}
loop {
thread::park();
}
}
}