From 86825decb6f357195ff34dfb8bfbb36823c05014 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Sat, 4 Apr 2026 19:23:06 +0200 Subject: [PATCH] Don't use bash unnecessarily --- .ci/muon/run.sh | 7 +------ .ci/package/build.sh | 6 +++--- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.ci/muon/run.sh b/.ci/muon/run.sh index c2a74213..39333e2c 100755 --- a/.ci/muon/run.sh +++ b/.ci/muon/run.sh @@ -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 diff --git a/.ci/package/build.sh b/.ci/package/build.sh index 400d84c7..bbfc87c8 100755 --- a/.ci/package/build.sh +++ b/.ci/package/build.sh @@ -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 -- 2.47.3