mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 17:54:32 +00:00
- Add build-context helper to copy Docker context safely (ignore runtime data, keep symlinks) - Update UI and core actions to use ~/.prole/build and shared copy helper - Add/adjust tests and scripts; introduce knoe ops helpers and update manifests Co-authored-by: Junie <junie@jetbrains.com>
16 lines
300 B
Bash
16 lines
300 B
Bash
#!/bin/bash
|
|
# Prole Installer: k3d
|
|
# Installs k3d via Homebrew if missing
|
|
|
|
set -euo pipefail
|
|
|
|
echo "[prole] Checking k3d..."
|
|
if ! command -v k3d >/dev/null 2>&1; then
|
|
echo "[prole] Installing k3d via brew..."
|
|
brew install k3d
|
|
else
|
|
echo "[prole] k3d already installed"
|
|
fi
|
|
|
|
echo "[prole] k3d OK"
|