mirror of
https://github.com/AllanWang/Frost-for-Facebook.git
synced 2024-11-08 12:02:33 +01:00
10 lines
280 B
Bash
10 lines
280 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Add appropriate files for encryption
|
||
|
|
||
|
rm frost.tar.enc
|
||
|
cd ..
|
||
|
tar cvf frost.tar files/gplay-keys.json files/play.keystore files/play.properties files/test.keystore app/fabric.properties
|
||
|
travis encrypt-file frost.tar --add
|
||
|
rm frost.tar
|
||
|
mv frost.tar.enc files/
|