MissouriMRDT / Autonomy_Software

Unescaped enclosed quotes SH-2027
Bug risk
Major
2 occurrences in this check
The surrounding quotes actually unquote this. Remove or escape them
14# Setup docker repo.
15echo \
16  "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
17  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \18  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
19# Install docker.
20sudo apt-get update
The surrounding quotes actually unquote this. Remove or escape them
13sudo chmod a+r /etc/apt/keyrings/docker.gpg
14# Setup docker repo.
15echo \
16  "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \17  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
18  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
19# Install docker.