forked from michael.heier/citadel-core
22 lines
506 B
Bash
Executable File
22 lines
506 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2020 Umbrel. https://getumbrel.com
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -euo pipefail
|
|
|
|
RELEASE=$1
|
|
CITADEL_ROOT=$2
|
|
|
|
echo
|
|
echo "======================================="
|
|
echo "=============== UPDATE ================"
|
|
echo "======================================="
|
|
echo "========= Stage: Post-update =========="
|
|
echo "======================================="
|
|
echo
|
|
|
|
# Nothing here for now
|