Ignore unnecessary exit codes

This commit is contained in:
Manuel Thalmann 2023-04-07 02:09:49 +02:00
parent 6407603f01
commit 9c6b1fc8d4
3 changed files with 9 additions and 8 deletions

View file

@ -55,13 +55,13 @@ EXTENSION_DIR="/usr/share/chromium-extensions" \
EXTENSION_POLICY_DIR="$braveExtensions" \
source "../../Common/Config/Chromium/install-ytmusic-dl.sh";
sudo ln -s "$braveExtensions" /opt/brave.com/brave-beta/extensions;
sudo ln -s "$braveExtensions" /opt/brave.com/brave-nightly/extensions;
sudo ln -sf "$braveExtensions" /opt/brave.com/brave-beta/extensions;
sudo ln -sf "$braveExtensions" /opt/brave.com/brave-nightly/extensions;
# Tools
yay --noconfirm -Rs typescript;
yay --noconfirm -Rs yarn;
yay --noconfirm -Rs nodejs;
yay --noconfirm -Rs typescript || true;
yay --noconfirm -Rs yarn || true;
yay --noconfirm -Rs nodejs || true;
yay --noconfirm -Syu \
bitwarden \

View file

@ -6,7 +6,7 @@ pushd "$contextRoot" > /dev/null;
yay -G "$packageName";
cd *;
yay --noconfirm -S "$packageName" --asdeps;
yay --noconfirm -S "$packageName" --asdeps || true;
sed -i \
-e "s/^\(provides=(.*\)\()\)/\1 \"libcamera-base.so\" \"libcamera.so\"\2/" \

View file

@ -3,8 +3,9 @@ contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
git init;
git commit --allow-empty -m "Initial commit" > /dev/null;
git branch main;
git branch dev;
git branch master || true;
git branch main || true;
git branch dev || true;
yes "" | git flow init > /dev/null 2>&1;
git flow config set --global master main > /dev/null;
git flow config set --global develop dev > /dev/null;