1
0
mirror of https://github.com/hegerdes/gitlab-actions.git synced 2025-10-06 05:36:52 +02:00
Files
gitlab-actions/scripts/generated/alpine-core-tools.sh
Henrik Gerdes 49d905e089 feat: add helm docs install
Signed-off-by: Henrik Gerdes <hegerdes@outlook.de>
2025-01-31 22:33:08 +01:00

9 lines
222 B
Bash
Executable File

#!/bin/bash
# Installing core tools
if command -v apk > /dev/null; then
apk add --no-cache curl jq unzip tar gzip gcompat > /dev/null
else
echo "The apk package manager does not exist. Skipping core tool install."
fi