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" "projects"
"tasks" "tasks"
"videos" "videos"
".local/share/gnupg/"
) )
WORK_DIRECTORIES=( WORK_DIRECTORIES=(
"work" "work"
".local/log" ".local/log"
"downloads" "downloads"
"tasks"
".local/keys" ".local/keys"
".local/share/gnupg/"
) )
# Files which should be symlinked in the home folder # 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) package_count=$(< "${PACKAGES_DIR}/packages.list" wc -l)
print_log "Installing ${package_count} packages" print_log "Installing ${package_count} packages"
yay -Syy > /dev/null 2>&1 yay -Syy > /dev/null 2>&1
yay -S --noconfirm --needed --devel -- < "${PACKAGES_DIR}/packages.list" yay -S --noconfirm --needed --devel - < "${PACKAGES_DIR}/packages.list"
############################################################################### ###############################################################################