diff options
author | Sergei Golubchik <serg@mariadb.org> | 2022-05-19 13:58:31 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2022-06-07 18:26:05 +0200 |
commit | 7c4efab9031c2b08af5caf0e3a2b01a70a3414bf (patch) | |
tree | 05d174996fd69c2223129768de15a83a90e55599 /scripts | |
parent | 19c721631ef21bcf3ce3ea3a036da5e234b0f49c (diff) | |
download | mariadb-git-7c4efab9031c2b08af5caf0e3a2b01a70a3414bf.tar.gz |
typo fixed: [[space]] -> [[:space:]]
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/wsrep_sst_rsync.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wsrep_sst_rsync.sh b/scripts/wsrep_sst_rsync.sh index 1775281e634..994347d6f73 100644 --- a/scripts/wsrep_sst_rsync.sh +++ b/scripts/wsrep_sst_rsync.sh @@ -842,7 +842,7 @@ EOF fi if [ $WSREP_SST_OPT_BYPASS -eq 0 ]; then - if grep -m1 -qE "^$BYPASS_TAG([[space]]+.*)?\$" -- "$MAGIC_FILE"; then + if grep -m1 -qE "^$BYPASS_TAG([[:space:]]+.*)?\$" -- "$MAGIC_FILE"; then readonly WSREP_SST_OPT_BYPASS=1 readonly WSREP_TRANSFER_TYPE='IST' fi |