Skip to content

Commit

Permalink
skip self-update if in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnachun committed Jan 12, 2025
1 parent a204d05 commit fb5892c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion run_once_install-packages.sh.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ fi
{{ if eq .chezmoi.arch "amd64" -}}
pixi global install -c dnachun -c conda-forge $(tr '\n' ' ' < $HOME/.local/share/chezmoi/dot_config/chezmoi/intel_packages)
{{ end }}
pixi self-update
if [[ ${CI} != "true" ]]; then
pixi self-update
fi

micromamba shell init --shell=bash $HOME/micromamba
micromamba shell init --shell zsh
Expand Down

0 comments on commit fb5892c

Please sign in to comment.