We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f09a606 commit 3668b3dCopy full SHA for 3668b3d
4 files changed
cookbooks/asdf/default.rb
cookbooks/frgm/default.rb
@@ -8,4 +8,3 @@
8
EOS
9
not_if 'command -v frgm'
10
end
11
-
cookbooks/rtx/default.rb
@@ -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'
+end
+execute 'rtx install -a'
user.rb
@@ -1,6 +1,6 @@
include_recipe 'cookbooks/dotfiles/default.rb'
include_recipe 'cookbooks/fish/default.rb'
-include_recipe 'cookbooks/asdf/default.rb'
+include_recipe 'cookbooks/rtx/default.rb'
include_recipe 'cookbooks/nvim/default.rb'
include_recipe 'cookbooks/ssh/default.rb'
include_recipe 'cookbooks/open/default.rb'
0 commit comments