added more conditional logic to dev.sh
Some checks failed
Actions / Build and Upload Export Files (push) Failing after 6s
Actions / Autotagger (push) Successful in 8s
Actions / Build Documentation (push) Failing after 18s

This commit is contained in:
Seaswimmer 2024-06-09 16:05:12 -04:00
parent 8d3b945825
commit 361f578783
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -17,7 +17,12 @@ install_packwiz() {
# Generate autocompletion script
packwiz completion bash > ~/.packwiz
if ! grep -q "source ~/.packwiz" ~/.bashrc; then
echo 'source ~/.packwiz' >> ~/.bashrc
echo "Successfully enabled packwiz autocompletion";
else
echo "packwiz autocompletion already enabled"
fi
source ~/.bashrc
}