Last active
December 31, 2024 03:25
-
-
Save viteo/35d78792158e229a0ba9997c0b628e4e to your computer and use it in GitHub Desktop.
Godot Engine time tracking for Steam
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo OFF | |
set godotexe=godot.windows.opt.tools.64.exe | |
dir %godotexe% | find "<SYMLINK>" && ( | |
echo Already fixed. | |
goto FIN | |
) | |
if exist %godotexe% ( | |
ren %godotexe% godot.exe | |
mklink %godotexe% c:\Windows\System32\cmd.exe | |
echo Done . . . | |
) else ( | |
echo Godot exe file not found. | |
) | |
:FIN | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment