Skip to content

Commit

Permalink
win
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneWizard08 committed May 31, 2024
1 parent 862b183 commit c562919
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/webui/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::env::consts::OS;

#[cfg(not(debug_assertions))]
fn build() {
let path = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
Expand All @@ -20,5 +22,9 @@ fn build() {
}

fn main() {
if OS == "windows" {
return;
}

build();
}

0 comments on commit c562919

Please sign in to comment.