|
|
d1ed09 |
From 521f9605e0ab019ec9a493153ca0c8fe4267d665 Mon Sep 17 00:00:00 2001
|
|
|
d1ed09 |
From: Ray Strode <rstrode@redhat.com>
|
|
|
d1ed09 |
Date: Mon, 17 Dec 2018 15:46:10 -0500
|
|
|
d1ed09 |
Subject: [PATCH] spawn: add shebang line to script
|
|
|
d1ed09 |
|
|
|
d1ed09 |
downstream tools get confused when the script is missing a shebang
|
|
|
d1ed09 |
line, and having a shebang line doesn't hurt, so add one.
|
|
|
d1ed09 |
---
|
|
|
d1ed09 |
glib/tests/echo-script | 1 +
|
|
|
d1ed09 |
1 file changed, 1 insertion(+)
|
|
|
d1ed09 |
|
|
|
d1ed09 |
diff --git a/glib/tests/echo-script b/glib/tests/echo-script
|
|
|
d1ed09 |
index c732ed910..b609f2d39 100755
|
|
|
d1ed09 |
--- a/glib/tests/echo-script
|
|
|
d1ed09 |
+++ b/glib/tests/echo-script
|
|
|
d1ed09 |
@@ -1 +1,2 @@
|
|
|
d1ed09 |
+#!/bin/sh
|
|
|
d1ed09 |
echo "echo"
|
|
|
d1ed09 |
--
|
|
|
d1ed09 |
2.20.0
|
|
|
d1ed09 |
|