PortValhalla/scripts/Arch/Software/ytmdesktop/install.sh

13 lines
238 B
Bash
Executable file

#!/bin/bash
contextRoot="$(mktemp -d)";
pushd "$contextRoot" > /dev/null;
yay --noconfirm -Syu electron13-bin;
yes | pipenv run --python 3.10 -- \
yay --noconfirm -Syu \
ytmdesktop;
popd > /dev/null;
rm -rf "$contextRoot";