From eb27caf077d96edeef56ac0e4eb93ca70f877411 Mon Sep 17 00:00:00 2001 From: Yo hello Date: Thu, 20 Jun 2024 01:57:10 -0400 Subject: [PATCH] --depth 1, option only clones the latest commit, meaning it clones A LOT quicker --- Working-on-GNU-Linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index 944d55c..96d665e 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -44,7 +44,7 @@ You can compile three different types of raylib library: Download the raylib repository from [Github](https://github.com/raysan5/raylib), then compile it with: - git clone https://github.com/raysan5/raylib.git raylib + git clone --depth 1 https://github.com/raysan5/raylib.git raylib cd raylib/src/ make PLATFORM=PLATFORM_DESKTOP # To make the static version. make PLATFORM=PLATFORM_DESKTOP RAYLIB_LIBTYPE=SHARED # To make the dynamic shared version.