Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/vite_global_cli/src/commands/env/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,8 @@ function vp
command vp $argv; return
end
set -lx VITE_PLUS_ENV_USE_EVAL_ENABLE 1
set -l __vp_out (command vp $argv); or return $status
eval $__vp_out
set -l __vp_out (env FISH_VERSION=$FISH_VERSION command vp $argv); or return $status
eval (string join ';' $__vp_out)
else
command vp $argv
end
Expand Down
Loading