From a334f7f3263d7a86af0b60f63137da28a5126236 Mon Sep 17 00:00:00 2001 From: gibran Date: Sun, 1 Mar 2026 01:45:32 +0700 Subject: [PATCH] docs(download): Change `apt-get` to `apt` for Debian installation --- .../download-instructions/linux-debian-cli-community.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/download-instructions/linux-debian-cli-community.php b/include/download-instructions/linux-debian-cli-community.php index fb19c4005f..1faf2dc220 100644 --- a/include/download-instructions/linux-debian-cli-community.php +++ b/include/download-instructions/linux-debian-cli-community.php @@ -3,8 +3,8 @@


 # Add the packages.sury.org/php repository.
-sudo apt-get update
-sudo apt-get install -y lsb-release ca-certificates curl
+sudo apt update
+sudo apt install -y lsb-release ca-certificates curl
 sudo curl -sSLo /tmp/debsuryorg-archive-keyring.deb https://packages.sury.org/debsuryorg-archive-keyring.deb
 sudo dpkg -i /tmp/debsuryorg-archive-keyring.deb
 sudo tee /etc/apt/sources.list.d/php.sources <<EOF
@@ -14,8 +14,8 @@
 Components: main
 Signed-By: /usr/share/keyrings/debsuryorg-archive-keyring.gpg
 EOF
-sudo apt-get update
+sudo apt update
 
 # Install PHP.
-sudo apt-get install -y php
+sudo apt install -y php