From: Jérémie Astor Date: Sun, 9 Jan 2022 13:54:52 +0000 (+0100) Subject: :wrench: Add scripts/update.sh X-Git-Tag: nightly~389^2~2 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=08bedfac3e647676b6c27addcabdec8085fb1ab4;p=gwion.git :wrench: Add scripts/update.sh --- diff --git a/scripts/update.sh b/scripts/update.sh new file mode 100644 index 00000000..e828a56e --- /dev/null +++ b/scripts/update.sh @@ -0,0 +1,12 @@ +#!/bin/bash +git pull +git submodule update --recursive --init +make clean-all +make -j +make -C plug +sudo make install +mkdir -p ~/.gwplug +rm -f ~/.gwplug/*.so +for a in $(cat plug/list.txt) +do cp plug/$a/*.so ~/.gwplug +done