You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
println!("Querying Commit-Boost with compose file: {}", compose_path);
110
+
windows_not_supported();
108
111
109
112
// start docker compose
110
113
run_docker_compose!(compose_path,"logs","-f");
111
114
112
115
Ok(())
113
116
}
117
+
118
+
#[cfg(target_os = "windows")]
119
+
fnwindows_not_supported(){
120
+
eprintln!(
121
+
"Windows is currently only partially supported, please run `docker compose` manually and consider filing an issue at https://github.com/Commit-Boost/commit-boost-client"
0 commit comments