From b1178435974c79b21d46dd1c2a95c5d308f54251 Mon Sep 17 00:00:00 2001 From: lubsch <33580245+Lubsch@users.noreply.github.com> Date: Wed, 22 Jul 2026 18:30:51 +0200 Subject: [PATCH] chore: make format.sh executable and improve shebang portability The shebang #!/usr/bin/bash doesn't work on e.g. NixOS. Using #!/usr/bin/env fixes that. --- format.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 format.sh diff --git a/format.sh b/format.sh old mode 100644 new mode 100755 index 6b204b00..327d44d2 --- a/format.sh +++ b/format.sh @@ -1,3 +1,3 @@ -#!/usr/bin/bash +#!/usr/bin/env bash clang-format -i src/*/*.h -i src/*/*.c -i src/mango.c -i mmsg/mmsg.c