Fix directories

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-05-28 15:41:22 +02:00
parent f28cca3a9f
commit 9d40e81e89
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4

View file

@ -35,13 +35,16 @@ DIRECTORIES=(
"projects"
"tasks"
"videos"
".local/share/gnupg/"
)
WORK_DIRECTORIES=(
"work"
".local/log"
"downloads"
"tasks"
".local/keys"
".local/share/gnupg/"
)
# Files which should be symlinked in the home folder
@ -140,7 +143,7 @@ print_section "Installing packages"
package_count=$(< "${PACKAGES_DIR}/packages.list" wc -l)
print_log "Installing ${package_count} packages"
yay -Syy > /dev/null 2>&1
yay -S --noconfirm --needed --devel -- < "${PACKAGES_DIR}/packages.list"
yay -S --noconfirm --needed --devel - < "${PACKAGES_DIR}/packages.list"
###############################################################################