Disable makepkg's debug option by default

This commit is contained in:
Manuel Thalmann 2024-03-07 21:23:55 +01:00
commit 4411b9cd08
4 changed files with 24 additions and 1 deletions
scripts/Arch/Software

View file

@ -0,0 +1,10 @@
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
sudo pacman --noconfirm -Syu \
base-devel \
;
. "../../Config/base-devel/install.sh";
popd > /dev/null;

View file

@ -1,7 +1,7 @@
#!/bin/bash
if ! command -v yay > /dev/null 2>&1
then
sudo pacman --noconfirm -S --needed git base-devel
sudo pacman --noconfirm -S --needed git
contextRoot="$(mktemp -d)";
git clone https://aur.archlinux.org/yay.git "$contextRoot";