Skip to content

Commit 3668b3d

Browse files
committed
use jdxcode/rtx instead of asdf
1 parent f09a606 commit 3668b3d

File tree

4 files changed

+11
-78
lines changed

4 files changed

+11
-78
lines changed

cookbooks/asdf/default.rb

Lines changed: 0 additions & 76 deletions
This file was deleted.

cookbooks/frgm/default.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@
88
EOS
99
not_if 'command -v frgm'
1010
end
11-

cookbooks/rtx/default.rb

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
execute 'install rtx' do
3+
command <<-CMD
4+
curl https://rtx.jdxcode.com/rtx-latest-linux-x64 > #{ENV['HOME']}/.local/bin/rtx
5+
chmod +x #{ENV['HOME']}/.local/bin/rtx
6+
CMD
7+
not_if 'command -v rtx'
8+
end
9+
10+
execute 'rtx install -a'

user.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include_recipe 'cookbooks/dotfiles/default.rb'
22
include_recipe 'cookbooks/fish/default.rb'
3-
include_recipe 'cookbooks/asdf/default.rb'
3+
include_recipe 'cookbooks/rtx/default.rb'
44
include_recipe 'cookbooks/nvim/default.rb'
55
include_recipe 'cookbooks/ssh/default.rb'
66
include_recipe 'cookbooks/open/default.rb'

0 commit comments

Comments
 (0)