← Prev in month ← Prev in thread
Next in thread → Next in month →

[PATCH v2 1/2] makepdf: fix shell command

From
Enrico Weigelt, metux IT consult <>
Date
2021-06-30T11:58:54+00:00
ID
Thread
[PATCH v2 1/2] makepdf: fix shell command
The script needs bash, but calls /bin/sh, which might be (and on some
distros actually is) a completely different shell.

Signed-off-by: Enrico Weigelt, metux IT consult <>
---
 makeall.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makeall.sh b/makeall.sh
index 37e6c34..186a6d1 100755
--- a/makeall.sh
+++ b/makeall.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 export SPECDOC=${SPECDOC:-`cat REVISION`}
 export DATESTR=${DATESTR:-`cat REVISION-DATE`}
-- 
2.20.1
← Prev in month ← Prev in thread
Next in thread → Next in month →