From 571ebc9b444d1e584124718c60b290e4078d03b8 Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Tue, 11 Aug 2026 09:40:51 +0200 Subject: [PATCH] Do not automagically include git at the moment. --- Makefile.rkt | 1 - main.rkt | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.rkt b/Makefile.rkt index 60ccfb1..3051744 100644 --- a/Makefile.rkt +++ b/Makefile.rkt @@ -1,6 +1,5 @@ #lang racket - (require "main.rkt" racket/string git diff --git a/main.rkt b/main.rkt index 50f58f7..9724d59 100644 --- a/main.rkt +++ b/main.rkt @@ -5,7 +5,7 @@ (for-syntax racket/base) "private/commands.rkt" "private/engine.rkt" - git + ;git ) (provide (all-from-out racket) @@ -26,7 +26,8 @@ $target $deps $< - (all-from-out git)) + ) + ;(all-from-out git)) ;; For target declarations we want a bound identifier to remain an ordinary ;; Racket expression. This makes generated targets such as (target obj ...)