Skip to content

Commit 1278843

Browse files
committed
fix
1 parent 350e1ff commit 1278843

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/base/.devcontainer/scripts/install_github_release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ export DEBIAN_FRONTEND=noninteractive
66
DEFAULT_INSTALL_DIR="/usr/local/bin"
77
INSTALL_DIR="${INSTALL_DIR:-$DEFAULT_INSTALL_DIR}"
88

9-
if ! command -v curl >/dev/null 2>&1 || ! command -v unzip >/dev/null 2>&1; then
9+
if ! command -v curl >/dev/null 2>&1 || ! command -v unzip >/dev/null 2>&1 || ! command -v tar >/dev/null 2>&1; then
1010
apt-get update
11-
apt-get install -y --no-install-recommends curl unzip ca-certificates
11+
apt-get install -y --no-install-recommends curl unzip tar ca-certificates
1212
fi
1313

1414
if ! command -v gh >/dev/null 2>&1; then

0 commit comments

Comments
 (0)