fix commit not being executed
This commit is contained in:
parent
3ac7f0c361
commit
ad3751b44f
1 changed files with 2 additions and 1 deletions
|
@ -517,6 +517,7 @@ public class PasswordStore extends AppCompatActivity {
|
|||
new GitOperation(PasswordRepository.getRepositoryDirectory(activity), activity) {
|
||||
@Override
|
||||
public void execute() {
|
||||
Log.d(TAG, "Commiting with message " + message);
|
||||
Git git = new Git(this.repository);
|
||||
GitAsyncTask tasks = new GitAsyncTask(activity, false, true, this);
|
||||
tasks.execute(
|
||||
|
@ -524,7 +525,7 @@ public class PasswordStore extends AppCompatActivity {
|
|||
git.commit().setMessage(message)
|
||||
);
|
||||
}
|
||||
};
|
||||
}.execute();
|
||||
}
|
||||
|
||||
protected void onActivityResult(int requestCode, int resultCode,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue