Configure-stormux added.

This commit is contained in:
Storm Dragon 2021-10-24 01:40:14 -04:00
parent 4c1f6b5837
commit d74b731593
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
trap 'popd &> /dev/null' EXIT
if [[ ! -d /opt/configure-stormux ]]; then
echo "Installing configure-stormux..."
sudo git -C /opt clone https://gitlab.com/stormux/configure-stormux.git || exit 1
fi
pushd /opt/configure-stormux
./configure-stormux.sh
exit 0