9 lines
180 B
Bash
Executable File
9 lines
180 B
Bash
Executable File
#! /bin/sh
|
|
|
|
git checkout --orphan binaries
|
|
git add -f fdroid/repo/*.apk
|
|
git commit -m "Add latest apks"
|
|
git push --force origin binaries
|
|
git checkout master
|
|
git branch -D binaries
|