Browse Source

fix ShellCheck

Evgeniy Zverev 1 year ago
parent
commit
17aaf5db41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compose/bin/configure-linux

+ 1 - 1
compose/bin/configure-linux

@@ -15,7 +15,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
     fi
 
     # Ask the user whether to execute the iptables command
-    read -p "Do you want to open port 9003 for xdebug? (y/n): " choice
+    read -r -p "Do you want to open port 9003 for xdebug? (y/n): " choice
     if [ "$choice" == "y" ]; then
         sudo iptables -A INPUT -p tcp --dport 9003 -j ACCEPT
         echo "Port 9003 has been opened for xdebug."