Add a missing #!/bin/sh to one test
This commit is contained in:
parent
fb4568be2e
commit
1137fffe6b
|
|
@ -36,6 +36,7 @@ ostree (2016.3-1) UNRELEASED; urgency=medium
|
||||||
for example if it is on tmpfs
|
for example if it is on tmpfs
|
||||||
* Stop dh_makeshlibs thinking that the LD_PRELOAD module libreaddir-rand.so
|
* Stop dh_makeshlibs thinking that the LD_PRELOAD module libreaddir-rand.so
|
||||||
(part of the tests) is meant to be a shared library
|
(part of the tests) is meant to be a shared library
|
||||||
|
* Add a missing #!/bin/sh to one test
|
||||||
|
|
||||||
-- Simon McVittie <smcv@debian.org> Wed, 27 Jan 2016 13:04:34 +0100
|
-- Simon McVittie <smcv@debian.org> Wed, 27 Jan 2016 13:04:34 +0100
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,3 @@
|
||||||
test-libarchive-fix-underlinking.patch
|
test-libarchive-fix-underlinking.patch
|
||||||
Skip-test_libarchive_ignore_device_file-if-we-cannot-writ.patch
|
Skip-test_libarchive_ignore_device_file-if-we-cannot-writ.patch
|
||||||
|
tests-admin-test.sh-add-bin-sh.patch
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
From: Simon McVittie <smcv@debian.org>
|
||||||
|
Date: Sat, 19 Mar 2016 17:54:38 +0000
|
||||||
|
Subject: tests/admin-test.sh: add #!/bin/sh
|
||||||
|
|
||||||
|
This is executable and appears to be intended to be executed directly,
|
||||||
|
so it should have a #! line.
|
||||||
|
---
|
||||||
|
tests/admin-test.sh | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/tests/admin-test.sh b/tests/admin-test.sh
|
||||||
|
index c4644d3..531cf99 100755
|
||||||
|
--- a/tests/admin-test.sh
|
||||||
|
+++ b/tests/admin-test.sh
|
||||||
|
@@ -1,4 +1,4 @@
|
||||||
|
-#
|
||||||
|
+#!/bin/sh
|
||||||
|
# Copyright (C) 2011,2014 Colin Walters <walters@verbum.org>
|
||||||
|
#
|
||||||
|
# This library is free software; you can redistribute it and/or
|
||||||
Loading…
Reference in New Issue