From 830f00e9536daf35692b2d17ea3ddd3b6b27ea17 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 20 Apr 2020 10:01:01 +0200 Subject: [PATCH] contrib/nglog.sh: Use bash(1) as interpreter bash(1) is required to handle the forking and output redirection connectly, sh(1) -- at least dash(1) on Debian -- fails ... This fixes the last commit, 14777c18c. --- contrib/nglog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/nglog.sh b/contrib/nglog.sh index 2c558eb4..b8dbb200 100755 --- a/contrib/nglog.sh +++ b/contrib/nglog.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # ngIRCd -- The Next Generation IRC Daemon # Copyright (c)2001-2020 Alexander Barton (alex@barton.de) and Contributors -- 2.39.2