From 98d004b4d9448bcbe48e39d08764d9bb466f9661 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 23 Jun 2026 10:35:59 +0200 Subject: [PATCH] fix(arty): source nvm.sh before nvm install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nvm is a shell function, not a binary — it doesn't survive into arty's subprocess. Sourcing nvm.sh inline makes it available. Co-Authored-By: Claude Sonnet 4.6 --- arty.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arty.yml b/arty.yml index 32633c6..f10c14b 100644 --- a/arty.yml +++ b/arty.yml @@ -56,7 +56,7 @@ scripts: rust:install: curl https://sh.rustup.rs -sSf | sh -s -- --no-modify-path -y rust:install:tools: cargo install bat fd-find yazi-build rust:update: rustup update - node:install: nvm install + node:install: . "$HOME/.nvm/nvm.sh" && nvm install node:install:base: npm i -g npm pnpm ruby:install: rbenv install ruby:install:base: gem install bundler