We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f61d605 commit b4e71abCopy full SHA for b4e71ab
1 file changed
clone.py
@@ -8,6 +8,8 @@
8
import sdl3, asyncio
9
10
def main(argv):
11
+ subprocess.run(["git", "config", "--global", "advice.detachedHead", "false"], shell = sdl3.SDL_SYSTEM in ["Windows"])
12
+
13
for repo, release in asyncio.run(sdl3.SDL_GET_LATEST_RELEASES()).items():
14
if repo not in os.listdir():
15
print("\33[32m", f"info: cloning '{repo}'", "without any release..." if (dev := release is None or not release.split("-")[1].startswith("3")) else f"with release '{release}'...", "\33[0m", sep = "", flush = True)
0 commit comments