mirror of
https://github.com/cloudpanel-io/cloudpanel-ce.git
synced 2026-04-05 20:31:58 +02:00
install.sh error #530
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @MaiKuraki on 3/3/2022
Hi, I got some error blocked my install progress.
my console info:
debian 10.2
amd64
cloudpanel version:
1.0.7
The error occurs in install.sh file.
Line 64
if [[ "$ARCHITECTURE" == "arm64" ]];Line 116
echo -e "$CLOUDPANEL_SOURCE_LIST"Line 117
echo -e "$CLOUDPANEL_APT_PREFERENCES"I replaced the command
if [[ "$ARCHITECTURE" == "arm64" ]];>>if [ "$ARCHITECTURE" == "arm64" ];echo -e "$CLOUDPANEL_SOURCE_LIST">>echo "$CLOUDPANEL_SOURCE_LIST"echo -e "$CLOUDPANEL_APT_PREFERENCES">>echo "$CLOUDPANEL_APT_PREFERENCES"after these modify , the install.sh could run success.