stack_wallet/scripts/app_config/shared/link_assets.sh
2024-05-21 18:27:58 -06:00

29 lines
No EOL
623 B
Bash
Executable file

#!/usr/bin/env bash
set -x -e
if [ $# -ne 1 ]; then
echo "Usage: $0 <theme specific assets dir name (ex. stack_wallet)>"
exit 1
fi
SELECT_ASSETS_DIR=$1
# declare full paths
ASSET_SOURCES_DIR="${APP_PROJECT_ROOT_DIR}/asset_sources"
ASSETS_DIR="${APP_PROJECT_ROOT_DIR}/assets"
# finally update symlinks
rm -f "${ASSETS_DIR}/default_themes"
ln -s "${ASSET_SOURCES_DIR}/bundled_themes/${SELECT_ASSETS_DIR}" "${ASSETS_DIR}/default_themes"
rm -f "${ASSETS_DIR}/icon"
ln -s "${ASSET_SOURCES_DIR}/icon/${SELECT_ASSETS_DIR}" "${ASSETS_DIR}/icon"
# todo run flutter_native_splash
# todo run flutter_launcher_icons