mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2025-02-12 01:30:43 +01:00
6 lines
148 B
Bash
6 lines
148 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -n ${PRIVATE_BUILD_CONFIG} ]; then
|
||
|
echo ${PRIVATE_BUILD_CONFIG} | base64 -d | tar zxf -
|
||
|
echo 'Extracted signing config'
|
||
|
fi
|