mirror of
https://github.com/xHyroM/gimi.git
synced 2024-11-10 02:38:06 +01:00
fix: go through all providers when pushing
This commit is contained in:
parent
d72999fd9e
commit
60aeeac369
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ int cli_command_push(int argc, char **argv) {
|
|||
|
||||
char *branch_name = get_current_branch_name();
|
||||
|
||||
for (int i = 0; i < 1; i++) {
|
||||
for (int i = 0; i < cfg->providers_size; i++) {
|
||||
struct gimi_config_provider *provider = cfg->providers[i];
|
||||
|
||||
int ret = git_push(provider->name, branch_name, verbose);
|
||||
|
|
Loading…
Reference in a new issue