From 3ac831ea742ee7b2f6bd55a28c9b045e7bec6735 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Thu, 18 Sep 2025 11:24:39 +0200 Subject: [PATCH] fix: shebang in environment wrapper files --- modules/ruther/build/environment.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ruther/build/environment.scm b/modules/ruther/build/environment.scm index 39e2b6c72548812c6a242435fea6ec72a908b3de..60190f7de1bc39fd53930d9a3e7e8b18d1db87f8 100644 --- a/modules/ruther/build/environment.scm +++ b/modules/ruther/build/environment.scm @@ -23,7 +23,7 @@ and exec input-file" (call-with-output-file output-file (lambda (port) - (format port "!#~a~%" + (format port "#!~a~%" (search-path (search-path-as-string->list (getenv "TARGET")) "bash")) (format port "source ~a~%" source-file)