mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-12-02 11:58:01 +08:00
43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
#!/usr/bin/bash
|
|
#
|
|
# Copyright (c) 2019 Of Him Code Technology Studio
|
|
# Jpom is licensed under Mulan PSL v2.
|
|
# You can use this software according to the terms and conditions of the Mulan PSL v2.
|
|
# You may obtain a copy of Mulan PSL v2 at:
|
|
# http://license.coscl.org.cn/MulanPSL2
|
|
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
# See the Mulan PSL v2 for more details.
|
|
#
|
|
|
|
# shellcheck disable=SC2016,SC2119,SC2155,SC2206,SC2207,SC2254
|
|
|
|
node_version=18.19.0
|
|
|
|
ARCH="$(dpkg --print-architecture)"
|
|
case "${ARCH}" in
|
|
aarch64 | arm64)
|
|
BINARY_ARCH='arm64'
|
|
;;
|
|
amd64 | x86_64)
|
|
BINARY_ARCH='x64'
|
|
;;
|
|
*)
|
|
echo "Unsupported arch: ${ARCH}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
curl -LfsSo /opt/node-v${node_version}-linux-${BINARY_ARCH}.tar.gz https://npmmirror.com/mirrors/node/v${node_version}/node-v${node_version}-linux-${BINARY_ARCH}.tar.gz
|
|
tar -zxvf /opt/node-v${node_version}-linux-${BINARY_ARCH}.tar.gz -C /opt/
|
|
|
|
|
|
cat >"/etc/profile" <<EOL
|
|
# node js
|
|
export NODE_HOME="/opt/node-v${node_version}-linux-${BINARY_ARCH}/"
|
|
export PATH=$PATH:$NODE_HOME/bin
|
|
EOL
|
|
|
|
source /etc/profile
|
|
|
|
node -v
|