From 4c24db72d047fdd0b8e3f8c5ff12b4f650b67484 Mon Sep 17 00:00:00 2001 From: Christian Guinard <28689358+christiangnrd@users.noreply.github.com> Date: Tue, 3 Sep 2024 16:31:24 -0300 Subject: [PATCH] Fix windows check --- src/bin/julialauncher.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/julialauncher.rs b/src/bin/julialauncher.rs index 364e0af2..10b9d0dc 100644 --- a/src/bin/julialauncher.rs +++ b/src/bin/julialauncher.rs @@ -4,6 +4,7 @@ use itertools::Itertools; use juliaup::config_file::{load_config_db, JuliaupConfig, JuliaupConfigChannel}; use juliaup::global_paths::get_paths; use juliaup::jsonstructs_versionsdb::JuliaupVersionDB; +#[cfg(not(windows))] use juliaup::utils::is_valid_julia_path; use juliaup::versions_file::load_versions_db; #[cfg(not(windows))]