File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments