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

10 lines
282 B
Bash
Raw Normal View History

2023-06-15 14:56:17 +00:00
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
2024-02-08 14:39:24 +00:00
yay --noconfirm -Syu --asdeps electron5-bin;
yay --noconfirm -Rs electron5-bin-debug;
2023-06-15 14:56:17 +00:00
yay --noconfirm -Syu pennywise-bin;
2024-02-08 14:39:24 +00:00
yay --noconfirm -Rs pennywise-bin-debug;
2023-06-15 18:41:19 +00:00
. "../../../Common/Config/Pennywise/install.sh";
2023-06-15 14:56:17 +00:00
popd > /dev/null;