mirror of
https://github.com/xHyroM/gimi.git
synced 2024-11-10 02:38:06 +01:00
feat: skip ci if gimi push is used
This commit is contained in:
parent
e0e29bfd28
commit
cdc87b444a
1 changed files with 2 additions and 2 deletions
|
@ -34,8 +34,8 @@ int git_push(char *provider_name, char *branch_name, bool verbose) {
|
|||
char output[1024];
|
||||
char command[256];
|
||||
|
||||
snprintf(command, sizeof(command), "git push gimi-%s %s 2>&1", provider_name,
|
||||
branch_name);
|
||||
snprintf(command, sizeof(command), "git push -o skip-ci gimi-%s %s 2>&1",
|
||||
provider_name, branch_name);
|
||||
|
||||
file_ptr = popen(command, "r");
|
||||
if (file_ptr == NULL) {
|
||||
|
|
Loading…
Reference in a new issue