FIX typo
This commit is contained in:
parent
fa43a8d4f9
commit
25813ff311
|
@ -77,7 +77,7 @@ run_yay() {
|
||||||
## AUR pkgs needed for spotify
|
## AUR pkgs needed for spotify
|
||||||
spotify_pkgs=(gconf)
|
spotify_pkgs=(gconf)
|
||||||
|
|
||||||
sudo -u nobody HOME="$yaytmp" MAKEFLAGS="-j$(nproc)" \
|
sudo -u nobody HOME="$yaytmp" MAKEFLAGS="-j$(nproc) \
|
||||||
yay --noconfirm --removemake -S \
|
yay --noconfirm --removemake -S \
|
||||||
"${dunst_pkgs[@]}" \
|
"${dunst_pkgs[@]}" \
|
||||||
"${emacs_pkgs[@]}" \
|
"${emacs_pkgs[@]}" \
|
||||||
|
|
|
@ -16,7 +16,8 @@ clone_maybe () {
|
||||||
}
|
}
|
||||||
|
|
||||||
run_stack_in_dir () {
|
run_stack_in_dir () {
|
||||||
local cur="pwd$"
|
local cur
|
||||||
|
cur="$(pwd)"
|
||||||
cd "$1" || return 1
|
cd "$1" || return 1
|
||||||
stack install
|
stack install
|
||||||
cd "$cur" || return 1
|
cd "$cur" || return 1
|
||||||
|
|
Loading…
Reference in New Issue