AWS amazonq documentation change
Summary
Modified installation commands to include making install.sh executable before execution
Security assessment
Adding 'chmod +x' ensures proper permissions but does not address a specific security vulnerability. This is a standard procedural correction for script execution.
Diff
diff --git a/amazonq/latest/qdeveloper-ug/command-line-installing.md b/amazonq/latest/qdeveloper-ug/command-line-installing.md index 1b04fe9cd..acb9f2a92 100644 --- a/amazonq/latest/qdeveloper-ug/command-line-installing.md +++ b/amazonq/latest/qdeveloper-ug/command-line-installing.md @@ -104 +104 @@ The following procedure steps show how WSL can be installed: - 7. Execute the install using the following command: + 7. Execute the install using the following commands: @@ -106 +106,3 @@ The following procedure steps show how WSL can be installed: - sudo apt install -y ./install.sh + chmod +x q/install.sh + + sudo install -y q/install.sh @@ -239 +241,3 @@ The warning in the output is expected and doesn't indicate a problem. It occurs - sudo apt install -y ./install.sh + chmod +x q/install.sh + + sudo install -y q/install.sh