From 2b19ca854fd23ebce7ef4cbc9c785dc6847f9b89 Mon Sep 17 00:00:00 2001 From: Paul Kronenwetter Date: Fri, 24 Jun 2022 20:49:03 -0400 Subject: [PATCH] Move creation scripts to tools directory. --- create_node_env.sh => tools/create_node_env.sh | 1 - create_python_env.sh => tools/create_python_env.sh | 0 2 files changed, 1 deletion(-) rename create_node_env.sh => tools/create_node_env.sh (99%) rename create_python_env.sh => tools/create_python_env.sh (100%) diff --git a/create_node_env.sh b/tools/create_node_env.sh similarity index 99% rename from create_node_env.sh rename to tools/create_node_env.sh index 0883786c..59c011a5 100755 --- a/create_node_env.sh +++ b/tools/create_node_env.sh @@ -16,7 +16,6 @@ PATH=${OLDPATH} VENVDIR="$(pwd)/node_modules" PATH_ADDITIONS="$(pwd)/node_modules/bin:$(pwd)/node_modules/.bin" - # Verify NPM exists. if [ -z "${NPM}" ] || [ ! -x "${NPM}" ]; then echo "Error: ${NPM} isn't executable or doesn't exist." diff --git a/create_python_env.sh b/tools/create_python_env.sh similarity index 100% rename from create_python_env.sh rename to tools/create_python_env.sh