diff --git a/script/include/bootstrap_functions.inc.sh b/script/include/bootstrap_functions.inc.sh new file mode 100644 index 00000000..33e22bf8 --- /dev/null +++ b/script/include/bootstrap_functions.inc.sh @@ -0,0 +1,12 @@ +# bootstrap_functions.inc.sh: Functions used by the bootstrap script + +install_python_packages() { + local install_flags="${1}" + pipenv install ${install_flags} + return $? +} + +install_node_packages() { + npm install + return $? +}