Skip to content

Commit

Permalink
Add edit chart command
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashochguertel committed Jun 25, 2023
1 parent 282fc90 commit 524eb76
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
#!/bin/bash

mkdir -p ~/bin
if [ -f "$HOME/bin/edit-chart" ]; then
rm "$HOME/bin/edit-chart"
fi

if [ -f "$HOME/bin/edit-chart.docker-compose.yml" ]; then
rm "$HOME/bin/edit-chart.docker-compose.yml"
fi

curl -sSLf https://raw.githubusercontent.com/tobiashochguertel/helm-editor-frontend/main/edit-chart > "$HOME"/bin/edit-chart && chmod +x "$HOME"/bin/edit-chart
curl -sSLf https://raw.githubusercontent.com/tobiashochguertel/helm-editor-frontend/main/docker-compose.yml > "$HOME"/bin/edit-chart.docker-compose.yml

Expand Down

0 comments on commit 524eb76

Please sign in to comment.