Switch to dev.sh and add node 20.18.2
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
curr_script=$(realpath "${BASH_SOURCE[0]}")
|
||||
path_to_add=${devenver_root}/CMake/3.29.1/bin
|
||||
echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\"
|
||||
|
||||
PATH=${path_to_add}:${PATH} $@
|
||||
@@ -1,13 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
curr_script=$(realpath "${BASH_SOURCE[0]}")
|
||||
root_path=${devenver_root}/CMake
|
||||
path_to_add=${root_path}/$1/bin
|
||||
|
||||
if [ "$1" == "list" ]; then
|
||||
ls ${root_path}
|
||||
else
|
||||
echo [DEVENVER] \"${curr_script}\" is adding to path \"${path_to_add}\"
|
||||
PATH=${path_to_add}:${PATH} ${@:2}
|
||||
fi
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
#!/bin/bash
|
||||
base_path="$devenver_root/GCC"
|
||||
|
||||
# Check for help argument
|
||||
if [[ "$1" == "help" || "$1" == "" || "$1" == "--help" || "$1" == "/?" ]]; then
|
||||
echo "USAGE: gcc_env.sh <version> <command>"
|
||||
echo
|
||||
echo "VERSIONS:"
|
||||
ls "$base_path"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Check if a version is provided
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Error: No version specified."
|
||||
echo "USAGE: gcc_env.sh <version> <command>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Extract the version and remaining arguments
|
||||
version="$1"
|
||||
shift
|
||||
remaining_args="$@"
|
||||
|
||||
# Execute the command
|
||||
echo "[SCRIPT] Executing $remaining_args"
|
||||
|
||||
root_path="$base_path/$version"
|
||||
PATH=${root_path}/bin:${root_path}/lib:${root_path}/include:${PATH}
|
||||
$remaining_args
|
||||
@@ -1,32 +0,0 @@
|
||||
#!/bin/bash
|
||||
root_path="$devenver_root/NodeJS"
|
||||
|
||||
# Check for help argument
|
||||
if [[ "$1" == "help" || "$1" == "" || "$1" == "--help" || "$1" == "/?" ]]; then
|
||||
echo "USAGE: node_env.sh <version> <command>"
|
||||
echo
|
||||
echo "VERSIONS:"
|
||||
ls "$root_path"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Check if a version is provided
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Error: No version specified."
|
||||
echo "USAGE: node_env.sh <version> <command>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Extract the version and remaining arguments
|
||||
version="$1"
|
||||
shift
|
||||
remaining_args="$@"
|
||||
|
||||
# Construct the command to execute
|
||||
bin_path="$root_path/$version/bin"
|
||||
|
||||
# Execute the command
|
||||
echo "[SCRIPT] Executing $remaining_args"
|
||||
|
||||
PATH=${bin_path}:${PATH}
|
||||
$remaining_args
|
||||
Reference in New Issue
Block a user