Files
Manual-Coffee-Roasting-Plan/nodetopath.sh
2025-06-08 09:51:23 -04:00

9 lines
168 B
Bash

#!/bin/bash
if [ "$(echo $PATH | grep 'node-v22.16.0' | wc -l)" == "0" ]
then
echo add node to path
PATH=$(pwd)/../node/node-v22.16.0-linux-x64/bin/:$PATH
fi