diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2017-03-03 12:33:24 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2017-03-07 22:28:33 +0400 |
commit | fa137476ff14a42c25f221585066d36124755f0a (patch) | |
tree | 366fcb7ea7dfcd1f5c319efaeb84f0c5c9ea85d1 /mysql-test/lib | |
parent | aeff61ee5857f2351030c604f62dc7628543209a (diff) | |
download | mariadb-git-fa137476ff14a42c25f221585066d36124755f0a.tar.gz |
MDEV-11941 - Lintian complains about executable bits
Revoked executable bit from files that are not supposed to be executed directly.
Removed interpreted from files that are not supposed to be executed directly.
Added interpreter to files that are supposed to be executed directly.
Diffstat (limited to 'mysql-test/lib')
-rwxr-xr-x | mysql-test/lib/generate-ssl-certs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/generate-ssl-certs.sh b/mysql-test/lib/generate-ssl-certs.sh index 5dca21a755d..cc919dfe32e 100755 --- a/mysql-test/lib/generate-ssl-certs.sh +++ b/mysql-test/lib/generate-ssl-certs.sh @@ -1,4 +1,4 @@ -#/bin/sh -xe +#!/bin/sh -xe # simply run me from mysql-test/ cd std_data/ |