mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00
16 lines
272 B
Bash
Executable File
16 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf element-android
|
|
|
|
git clone \
|
|
--depth 1 \
|
|
--filter=blob:none \
|
|
--no-checkout \
|
|
https://github.com/vector-im/element-android \
|
|
;
|
|
cd element-android
|
|
git checkout develop
|
|
git sparse-checkout set library/ui-strings/src/main/res/values*
|
|
cd ..
|