fix: add making lemonade
This commit is contained in:
parent
990e393dd3
commit
f693609561
5 changed files with 8 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
sudo apt install -y "$@"
|
sudo apt-get install -y "$@"
|
||||||
|
|
|
@ -11,5 +11,5 @@ case "$1" in
|
||||||
exit $?;;
|
exit $?;;
|
||||||
esac
|
esac
|
||||||
sudo dpkg -i "$loc"
|
sudo dpkg -i "$loc"
|
||||||
sudo apt -f install
|
sudo apt-get -f install
|
||||||
sudo rm -v "$loc"
|
sudo rm -v "$loc"
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
# https://helm.sh/docs/intro/install/
|
||||||
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
||||||
|
|
1
packages/lemonade/depends
Normal file
1
packages/lemonade/depends
Normal file
|
@ -0,0 +1 @@
|
||||||
|
go
|
4
packages/lemonade/make
Executable file
4
packages/lemonade/make
Executable file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# https://github.com/lemonade-command/lemonade#installation
|
||||||
|
go get -d github.com/lemonade-command/lemonade
|
||||||
|
echo "$GOPATH/src/github.com/lemonade-command/lemonade/"
|
Loading…
Add table
Reference in a new issue