install.sh error #530

Closed
opened 2026-04-05 20:28:03 +02:00 by MrUnknownDE · 0 comments
Owner

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.

*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.
Sign in to join this conversation.