mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-29 15:01:10 +00:00
12 lines
162 B
Text
12 lines
162 B
Text
|
#!/bin/sh
|
||
|
|
||
|
db_type=$(snapctl get db.type)
|
||
|
|
||
|
if [ -z "${db_type}" ]
|
||
|
then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
cd ${SNAP}
|
||
|
exec ./set-environment bin/plm migration run --path ${SNAP_DATA}
|