1
Fork 0

Make massive progress towards deployment

This commit is contained in:
prescientmoon 2025-02-11 05:55:57 +01:00
parent ce18db3d14
commit 489568650a
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
62 changed files with 2868 additions and 1311 deletions

View file

@ -1,12 +1,12 @@
#!/usr/bin/env bash
if [ "$#" != 2 ]; then
echo "Usage: $0 <from> <to>"
if [ "$#" != 1 ]; then
echo "Usage: $0 <to>"
exit 1
fi
from=$1
to=$2
from=$SHIMMERING_DATA_DIR/db.sqlite
to=$1
echo "Creating destination..."
rm -rf "$to"