Skip to content

Commit 414b749

Browse files
authored
Fix installation command for GitHub CLI in onCreate.sh
1 parent 94980b4 commit 414b749

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.devcontainer/onCreate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e
44

55
echo "Installing the GitHub CLI"
6-
(type -p wget >/dev/null || (sudo apt update && sudo apt-get install wget rg -y)) \
6+
(type -p wget >/dev/null || (sudo apt update && sudo apt-get install wget -y)) \
77
&& sudo mkdir -p -m 755 /etc/apt/keyrings \
88
&& out=$(mktemp) && wget -nv -O$out https://cli.github.com/packages/githubcli-archive-keyring.gpg \
99
&& cat $out | sudo tee /etc/apt/keyrings/githubcli-archive-keyring.gpg > /dev/null \

0 commit comments

Comments
 (0)