Database migration tool, deduplication of sets data, customizable checkboxes #44

Merged
FrederikBaerentsen merged 51 commits from gregoo/BrickTracker:master into master 2025-01-24 19:12:12 +01:00
Showing only changes of commit 41ee6df887 - Show all commits

View File

@ -1,5 +1,14 @@
#!/usr/bin/env sh #!/usr/bin/env sh
# Cleanup any extra BK_ env that would have been set external
for VAR in `env | cut -d '=' -f 1`
do
case $VAR in BK_*)
echo "Unsetting $VAR"
unset "$VAR"
esac
done
if [ -f ".env" ] if [ -f ".env" ]
then then
set -a set -a