From 412c9a640aa506eb87df7dd6d17babbf932914d5 Mon Sep 17 00:00:00 2001 From: Gea-Suan Lin Date: Thu, 2 Oct 2025 12:16:58 +0800 Subject: [PATCH] feat: install .npmrc if it does not exist. --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index dcc6398..37cde3b 100755 --- a/install.sh +++ b/install.sh @@ -36,6 +36,11 @@ if [ ! -e ~/.gitconfig.local ]; then cp ${BASEDIR}/.gitconfig.local ~/ fi +# +if [ ! -e ~/.npmrc ]; then + cp ${BASEDIR}/.npmrc ~/ +fi + # cp ${BASEDIR}/.gdbinit ~/