Skip to content
Snippets Groups Projects
Commit 6cdcaa4c authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

Solution for bug 2 - relative path name in patch header

parent aefdfe11
No related branches found
No related tags found
No related merge requests found
......@@ -21,10 +21,10 @@
# ** end header
#
#header for patch scripts
if test -e ../.config ; then
if test -f ../.config ; then
. ../.config
fi
if test -e .config ; then
if test -f .config ; then
. .config
fi
CMD_OPTIONS="options:\n\n-h, --help\n\tShow brief help.\n-l LOGIN_PATH, --login-path=LOGIN_PATH\n\tA login-path for the mysql connection (see 'man mysql' and 'man mysql-config-editor').\n-u USER, --user=USER\n\tA mysql user.\n-p PASSWORD, --password=PASSWORD\n\tThe password for the mysql user.\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment