gcr-toggl-api
Version:
Toggl API for Node.js
16 lines (13 loc) • 304 B
Plain Text
use_nvm() {
watch_file .nvmrc
local NVM_PATH="$HOME/.nvm/nvm.sh"
if ! [ -f "$NVM_PATH" ]; then
echo "Installing NVM" >&2
curl -o- https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
fi
. "${NVM_PATH}"
nvm install
layout node
}
use nvm 14.18.0
layout python3