dotfiles/shell/profile.d/node.sh
2025-09-04 20:50:01 -06:00

8 lines
189 B
Bash

#!/bin/sh
export NODE_REPL_HISTORY="$HOME"/.local/state/node_repl_history
if ! [ -d "${NODE_REPL_HISTORY%/*}" ]; then
mkdir -p "${NODE_REPL_HISTORY%/*}"
touch "$NODE_REPL_HISTORY"
fi