Procházet zdrojové kódy

Update rexm.c

pull/5170/head
Ray před 3 měsíci
rodič
revize
3659eee994
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      tools/rexm/rexm.c

+ 3
- 3
tools/rexm/rexm.c Zobrazit soubor

@ -686,12 +686,12 @@ int main(int argc, char *argv[])
// Create commit with changes (local)
ChangeDirectory("C:/GitHub/raylib");
int result = system(TextFormat("git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
int result = system(TextFormat("cmd /c git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
if (result != 0) LOG("WARNING: Error committing changes\n");
//result = system("git push"); // Push to the remote (origin, current branch)
//result = system("cmd /c git push"); // Push to the remote (origin, current branch)
//if (result != 0) LOG("WARNING: Error pushing changes\n");
ChangeDirectory("C:/GitHub/raylib.com");
result = system(TextFormat("git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
result = system(TextFormat("cmd /c git commit -am \"REXM: RENAME: example: `%s` --> `%s`\"", exName, exRename)); // Commit changes (only tracked files)
if (result != 0) LOG("WARNING: Error committing changes\n");
} break;

Načítá se…
Zrušit
Uložit