diff --git a/src/main.rs b/src/main.rs
index e84dff7..71e2925 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -157,7 +157,7 @@ fn compile_only(filename: &str) {
     bar.set_message(format!("Compiling {}...", filename).as_str());
     bar.enable_steady_tick(100);
     let compilecmd = Command::new("rustc")
-        .args(&[filename, "-o", "temp"])
+        .args(&[filename, "-o", "temp", "--color", "always"])
         .output()
         .expect("fail");
     bar.finish_and_clear();