Install package shell script.
This commit is contained in:
parent
d01287927d
commit
a45de1d85f
1 changed files with 14 additions and 0 deletions
14
bin/install-packages
Executable file
14
bin/install-packages
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo -e "\033[1;35;47minstalling build-dependencies: $*\033[0m"
|
||||
case x-${PACKAGE_MANAGER} in
|
||||
x-baguette)
|
||||
exit 1
|
||||
;;
|
||||
x-apk)
|
||||
apk add $*
|
||||
;;
|
||||
*)
|
||||
exit 1
|
||||
esac
|
||||
|
Loading…
Add table
Reference in a new issue