Skip to content

Commit d347bd8

Browse files
authored
Update bootstrap.sh
1 parent 274c92f commit d347bd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Bootstrap/bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OS_TYPE=$(cat /etc/os-release | awk -F '=' '/^NAME/{print $2}' | awk '{print $1}
2222
Ubuntu*)
2323
echo "[*] OS Detected: $OS_TYPE";
2424
echo "[*] Installing required packages"
25-
apt-get install apt-transport-https ca-certificates curl software-properties-common;
25+
apt-get install -y apt-transport-https ca-certificates curl software-properties-common;
2626
echo "[*] Adding docker GPG key to keystore."
2727
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -;
2828
echo "[*] Adding docker to repositories."
@@ -65,4 +65,4 @@ OS_TYPE=$(cat /etc/os-release | awk -F '=' '/^NAME/{print $2}' | awk '{print $1}
6565
}
6666

6767
# Checking whether this is script was imported or is the entry point.
68-
[[ "$0" == "$BASH_SOURCE" ]] && main "$@"
68+
[[ "$0" == "$BASH_SOURCE" ]] && main "$@"

0 commit comments

Comments
 (0)