From 6af6f764de0948e28a496bbc587c1255c4769f54 Mon Sep 17 00:00:00 2001 From: "Burfeind, Jan-Niklas" Date: Thu, 15 Jan 2026 15:38:26 +0100 Subject: [PATCH] build: Remove bash dependency in favor of env and sh. Both are available in busybox, alpine and nixos (as well as in every other less exotic distro) --- build.sh | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 0a67b40..dd58dc2 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env sh # # YKUSH command application build script diff --git a/install.sh b/install.sh index f55484b..d1e41ef 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env sh echo installing ykush command... sudo cp -f bin/ykushcmd /usr/bin