mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
6 lines
220 B
Bash
Executable File
6 lines
220 B
Bash
Executable File
#!/usr/bin/bash
|
|
target="$GOBIN/kompose"
|
|
#exec go install github.com/kubernetes/kompose@latest
|
|
curl -sSL https://github.com/kubernetes/kompose/releases/download/v1.26.1/kompose-linux-amd64 -o "$target"
|
|
chmod +x "$target"
|