database schema adjustments to server/realm/scene
This commit is contained in:
parent
a102c96bb4
commit
09590edd95
79 changed files with 7100 additions and 100 deletions
20
stock/load.sh
Executable file
20
stock/load.sh
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
#!/bin/sh
|
||||
# Load all stock assets into the server.
|
||||
#
|
||||
# Usage: ./stock/load.sh [--force|-f]
|
||||
#
|
||||
# Options:
|
||||
# --force, -f Update existing assets instead of failing with 409 Conflict
|
||||
|
||||
# Parse arguments
|
||||
FORCE_FLAG=""
|
||||
for arg in "$@"; do
|
||||
case "$arg" in
|
||||
--force|-f)
|
||||
FORCE_FLAG="--force"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
(cd avatar && ./upload-stockavatars.sh $FORCE_FLAG)
|
||||
(cd props && ./upload-stockprops.sh $FORCE_FLAG)
|
||||
Loading…
Add table
Add a link
Reference in a new issue