mirror of
https://github.com/sist2app/sist2.git
synced 2025-05-11 20:36:13 +02:00
9 lines
271 B
Bash
Executable file
9 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
echo "Update index: Files"
|
|
source ${__dir}/sist2-update-files.sh
|
|
echo "Update index: Nextcloud"
|
|
source ${__dir}/sist2-update-nextcloud.sh
|
|
echo "Done. Restarting sist2."
|
|
docker restart sist2-sist2-1
|