From 5802e297f4f43106d3cc312624b8e0927236767d Mon Sep 17 00:00:00 2001 From: Nao Nishijima Date: Thu, 15 Dec 2016 18:22:52 -0800 Subject: [PATCH] Add shebang to run_ldap_tests sctipt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change fixes the issue that running ldap-tests fails. Previous test script file “scripts/run_ldap_tests” lacks shebang. “#!/bin/bash” is added to run test successfully. Change-Id: I0ca6e23e8d775f4393364865772d0ae00747b408 Reported-by: Yuki Kondo Signed-off-by: Nao Nishijima --- scripts/run_ldap_tests | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/run_ldap_tests b/scripts/run_ldap_tests index d1945c693..21d3e1003 100755 --- a/scripts/run_ldap_tests +++ b/scripts/run_ldap_tests @@ -1,3 +1,4 @@ +#!/bin/bash # # This script uses docker to start, configure, and stop openldap # so that we can run the LDAP test cases