Skip to content

Commit 3659eee

Browse files
committed
Update rexm.c
1 parent ba046a5 commit 3659eee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/rexm/rexm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -686,12 +686,12 @@ int main(int argc, char *argv[])
686686

687687
// Create commit with changes (local)
688688
ChangeDirectory("C:/GitHub/raylib");
689-
int result = system(TextFormat("git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
689+
int result = system(TextFormat("cmd /c git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
690690
if (result != 0) LOG("WARNING: Error committing changes\n");
691-
//result = system("git push"); // Push to the remote (origin, current branch)
691+
//result = system("cmd /c git push"); // Push to the remote (origin, current branch)
692692
//if (result != 0) LOG("WARNING: Error pushing changes\n");
693693
ChangeDirectory("C:/GitHub/raylib.com");
694-
result = system(TextFormat("git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
694+
result = system(TextFormat("cmd /c git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
695695
if (result != 0) LOG("WARNING: Error committing changes\n");
696696

697697
} break;

0 commit comments

Comments
 (0)