Skip to content

Commit

Permalink
Merge pull request #47 from pj8/fix-json-on-restart
Browse files Browse the repository at this point in the history
Fix json on restart
  • Loading branch information
yuki777 authored Apr 29, 2023
2 parents e0e0fc3 + 66f51f7 commit ca338b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.2.5
v1.2.6
7 changes: 5 additions & 2 deletions mysql/restart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ currentDir="$(
pwd -P
)"
cd $currentDir
./stop.sh -f "$format" $1
stopOutput=$(./stop.sh -f "$format" $1)

set -eu
./start.sh -f "$format" $1
startOutput=$(./start.sh -f "$format" $1)

echo "$stopOutput"
echo "$startOutput"

0 comments on commit ca338b8

Please sign in to comment.