You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/runners/install_runner_ci_requirements.sh
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -75,7 +75,6 @@ info "Step 2: Installing core system tools"
75
75
sudo dnf install -y \
76
76
git \
77
77
curl \
78
-
wget \
79
78
vim \
80
79
make \
81
80
tar \
@@ -107,7 +106,7 @@ else
107
106
warning "shellcheck not available in repos, installing via binary..."
108
107
# Install shellcheck from GitHub releases
109
108
SHELLCHECK_VERSION="v0.10.0"
110
-
wget -qO-"https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz"| tar -xJv
109
+
curl -fsSL"https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz"| tar -xJv
0 commit comments