Skip to content

Instantly share code, notes, and snippets.

@viteo
Last active May 21, 2024 01:01
Show Gist options
  • Save viteo/35d78792158e229a0ba9997c0b628e4e to your computer and use it in GitHub Desktop.
Save viteo/35d78792158e229a0ba9997c0b628e4e to your computer and use it in GitHub Desktop.
Godot Engine time tracking for Steam
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