Skip to content

Commit

Permalink
python: fix settings env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 30, 2024
1 parent f68bf52 commit b122c19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ pub struct Settings {
#[config(env = "MISE_PYTHON_PATCH_URL")]
pub python_patch_url: Option<String>,
#[config(env = "MISE_PYTHON_PATCHES_DIRECTORY")]
pub python_precompiled_os: Option<String>,
#[config(env = "MISE_PYTHON_PRECOMPILED_ARCH")]
pub python_patches_directory: Option<PathBuf>,
#[config(env = "MISE_PYTHON_PRECOMPILED_OS")]
#[config(env = "MISE_PYTHON_PRECOMPILED_ARCH")]
pub python_precompiled_arch: Option<String>,
#[config(env = "MISE_PYTHON_PRECOMPILED_OS")]
pub python_precompiled_os: Option<String>,
#[config(
env = "MISE_PYENV_REPO",
default = "https://github.com/pyenv/pyenv.git"
Expand Down

0 comments on commit b122c19

Please sign in to comment.