mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Fix conditional
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Configure pacman
|
||||
|
||||
if [[ ${OMARCHY_MIRROR:-} == "edge" ]] || ; then
|
||||
if [[ ${OMARCHY_MIRROR:-} == "edge" ]] ; then
|
||||
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman-edge.conf /etc/pacman.conf
|
||||
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist-edge /etc/pacman.d/mirrorlist
|
||||
else
|
||||
|
||||
@@ -3,7 +3,7 @@ if [[ -n ${OMARCHY_ONLINE_INSTALL:-} ]]; then
|
||||
sudo pacman -S --needed --noconfirm base-devel
|
||||
|
||||
# Configure pacman
|
||||
if [[ ${OMARCHY_MIRROR:-} == "edge" ]] || ; then
|
||||
if [[ ${OMARCHY_MIRROR:-} == "edge" ]] ; then
|
||||
sudo cp -f ~/.local/share/omarchy/default/pacman/pacman-edge.conf /etc/pacman.conf
|
||||
sudo cp -f ~/.local/share/omarchy/default/pacman/mirrorlist-edge /etc/pacman.d/mirrorlist
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user