Skip to content

Commit

Permalink
fix: import/export commands not working properly with relative paths
Browse files Browse the repository at this point in the history
now both are working fine:

- mysql_exporter export.env
- mysql_importer import.env
  • Loading branch information
joseluisq committed Apr 1, 2022
1 parent dec451a commit b461b98
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 8.0/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# Path: /usr/local/bin/docker-entrypoint.sh

Expand Down
2 changes: 1 addition & 1 deletion 8.0/scripts/___mysqlexport.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

START=`date +%s`

Expand Down
2 changes: 1 addition & 1 deletion 8.0/scripts/___mysqlimport.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -e

Expand Down
2 changes: 1 addition & 1 deletion 8.0/scripts/mysql_exporter
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -e

Expand Down
2 changes: 1 addition & 1 deletion 8.0/scripts/mysql_importer
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

set -e

Expand Down

0 comments on commit b461b98

Please sign in to comment.