Fixing bug
This commit is contained in:
parent
b93dff0504
commit
e7f94e5464
@ -1,3 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
function install {
|
||||
which $1 &> /dev/null
|
||||
|
||||
@ -11,11 +13,11 @@ function install {
|
||||
|
||||
|
||||
|
||||
declare -a apt_packages = ( "curl" "exfat-utils" "git" "htop" "tmux" "gimp" "inkscape" "texlive-full" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" )
|
||||
apt_packages=( "curl" "exfat-utils" "git" "htop" "tmux" "gimp" "inkscape" "texlive-full" "stow" "vlc" "blender" "gparted" "docker.io" "docker-compose" "python3-pip" "wget" "tree" "universal-ctags" )
|
||||
|
||||
sudo apt update
|
||||
|
||||
for package in "${apt_packages[@]}$"
|
||||
for package in "${apt_packages}$"
|
||||
do
|
||||
install ${package}
|
||||
done
|
||||
|
@ -1,3 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
function install {
|
||||
which $1 &> /dev/null
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user