]> tinc-vpn.org Git - tinc/commitdiff
Don't use bash unnecessarily
authorGuus Sliepen <guus@tinc-vpn.org>
Sat, 4 Apr 2026 17:23:06 +0000 (19:23 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sat, 4 Apr 2026 17:23:06 +0000 (19:23 +0200)
.ci/muon/run.sh
.ci/package/build.sh

index c2a742131847e61c303bf3c0924ac34cd7aa6a6d..39333e2cdc4c422c656281891fb8bd9001390cec 100755 (executable)
@@ -1,9 +1,4 @@
-#!/bin/bash
-
-# Fetch and build
-#   muon (a C reimplementation of the meson build system),
-#   samurai (a C reimplementation of the ninja build tool),
-# and then use both to build tinc.
+#!/bin/sh
 
 set -eux
 
index 400d84c7fe58c77e6b8513ffb4658928e96d42bc..bbfc87c8d40b127dec893e3054e3de3f361264ab 100755 (executable)
@@ -12,10 +12,10 @@ build_linux() {
 
   case "$ID" in
   debian | ubuntu)
-    bash .ci/package/deb/build.sh
+    .ci/package/deb/build.sh
     ;;
   almalinux | centos | fedora)
-    bash .ci/package/rpm/build.sh
+    .ci/package/rpm/build.sh
     ;;
   esac
 }
@@ -25,6 +25,6 @@ Linux)
   build_linux
   ;;
 MINGW*)
-  bash .ci/package/win/build.sh
+  .ci/package/win/build.sh
   ;;
 esac