Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Commit

Permalink
fix: prepend shell path with yvm shim (#564)
Browse files Browse the repository at this point in the history
* chore: bump node version to 10.18

* chore: bump node version to 12.14.1

* test: rewrite yvmrc

* fix: prepend shell path with yvm shim

* wip: remove useless change
  • Loading branch information
iamogbz authored Feb 7, 2020
1 parent d3ff3ff commit 3ae969b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

docker_defaults: &docker_defaults
docker:
- image: circleci/node:10.17.0
- image: circleci/node:12.14.1

commands:
prep_env:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.17.0
12.14.1
2 changes: 1 addition & 1 deletion src/shell/yvm.fish
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function yvm
end

function yvm_shim
yvm_set_fish_user_paths "$fish_user_paths $YVM_DIR/shim"
yvm_set_fish_user_paths "$YVM_DIR/shim $fish_user_paths"
end

function yvm_deactivate
Expand Down
2 changes: 1 addition & 1 deletion src/shell/yvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ yvm() {
}

yvm_shim() {
yvm_set_user_path "$PATH:$YVM_DIR/shim"
yvm_set_user_path "$YVM_DIR/shim:$PATH"
}

yvm_deactivate() {
Expand Down
2 changes: 1 addition & 1 deletion website/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.17.0
12.14.1

0 comments on commit 3ae969b

Please sign in to comment.