forked from coop-cloud/authentik
19 lines
472 B
Bash
19 lines
472 B
Bash
export CUSTOM_CSS_VERSION=v2
|
|
export CUSTOM_FLOWS_VERSION=v2
|
|
export RECOVERY_TEMPLATE_DE_VERSION=v1
|
|
|
|
customize() {
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "Usage: ... customize <assets_path>"
|
|
exit 1
|
|
fi
|
|
asset_dir=$1
|
|
for asset in $COPY_ASSETS; do
|
|
source=$(echo $asset | cut -d "|" -f1)
|
|
target=$(echo $asset | cut -d "|" -f2)
|
|
echo copy $source to $target
|
|
abra app cp $APP_NAME $asset_dir/$source $target
|
|
done
|
|
}
|