Skip to content

Commit 4a3192b

Browse files
authored
Fix NextcloudPi-Installation (#2853)
1 parent 7cbb894 commit 4a3192b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

install/nextcloudpi-install.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ network_check
1414
update_os
1515

1616
msg_info "Installing Dependencies"
17-
$STD apt-get install -y curl
18-
$STD apt-get install -y sudo
19-
$STD apt-get install -y mc
17+
$STD apt-get install -y \
18+
curl \
19+
sudo \
20+
mc
2021
msg_ok "Installed Dependencies"
2122

2223
msg_info "Installing NextCloudPi (Patience)"
23-
$STD bash <(curl -fsSL https://raw.githubusercontent.com/nextcloud/nextcloudpi/master/install.sh)
24+
bash <(curl -fsSL https://raw.githubusercontent.com/nextcloud/nextcloudpi/master/install.sh) >/dev/null 2>&1
2425
msg_ok "Installed NextCloudPi"
2526

2627
motd_ssh

0 commit comments

Comments
 (0)