forked from dsutanto/bChot-android
First Commit
This commit is contained in:
Executable
+45
@@ -0,0 +1,45 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2025 Element Creations Ltd.
|
||||
#
|
||||
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial.
|
||||
# Please see LICENSE files in the repository root for full details.
|
||||
|
||||
set -e
|
||||
|
||||
BRANCH='main'
|
||||
|
||||
while getopts b: flag
|
||||
do
|
||||
case "${flag}" in
|
||||
b) BRANCH=${OPTARG};;
|
||||
*) echo "usage: $0 [-b branch]" >&2
|
||||
exit 1 ;;
|
||||
esac
|
||||
done
|
||||
|
||||
echo "Branch used: $BRANCH"
|
||||
|
||||
echo "Cloning the compound-design-tokens repository..."
|
||||
if [ -d tmpCompound ]; then
|
||||
echo "Deleting tmpCompound folder..."
|
||||
rm -rf tmpCompound
|
||||
fi
|
||||
mkdir tmpCompound
|
||||
pushd tmpCompound
|
||||
git clone --branch "${BRANCH}" https://github.com/element-hq/compound-design-tokens
|
||||
|
||||
echo "Copying files from tokens repository..."
|
||||
rm -R ../libraries/compound/src/main/res/drawable
|
||||
cp -R compound-design-tokens/assets/android/res/drawable ../libraries/compound/src/main/res/
|
||||
cp -R compound-design-tokens/assets/android/src/* ../libraries/compound/src/main/kotlin/io/element/android/compound/tokens/generated/
|
||||
cp -R compound-design-tokens/assets/android/res/theme.iife.js ../libraries/compound/src/main/assets/theme.iife.js
|
||||
popd
|
||||
|
||||
echo "Adding autoMirrored attribute..."
|
||||
python3 ./tools/compound/addAutoMirrored.py
|
||||
|
||||
echo "Removing temporary files..."
|
||||
rm -rf tmpCompound
|
||||
|
||||
echo "Done!"
|
||||
Reference in New Issue
Block a user