Update ore.sh

This commit is contained in:
smeb y 2024-04-04 22:59:02 +08:00 committed by GitHub
parent 1bf5a713f5
commit 558bbf528d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

7
ore.sh
View File

@ -1,5 +1,12 @@
#!/bin/bash #!/bin/bash
# 检查是否以root用户运行脚本
if [ "$(id -u)" != "0" ]; then
echo "此脚本需要以root用户权限运行。"
echo "请尝试使用 'sudo -i' 命令切换到root用户然后再次运行此脚本。"
exit 1
fi
function install_node() { function install_node() {