Skip to content

Commit e3f533e

Browse files
authored
bug: Fix install script
The install script failed to check if fnm binary is installed. closes: 12173
1 parent cb27309 commit e3f533e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/cli/scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ install_node() {
191191
error "Failed to install fnm. Check your network connection and try again."
192192
fi
193193

194-
if [ ! -x "$FNM_INSTALL_DIR/fnm" ]; then
194+
if [ ! -x "$FNM_INSTALL_DIR" ]; then
195195
error "fnm installation failed - binary not found at $FNM_INSTALL_DIR/fnm"
196196
fi
197197

0 commit comments

Comments
 (0)