瀏覽代碼

fix logic error

Grega Bremec 7 月之前
父節點
當前提交
f2240412f2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      code/remove-logdirs.sh

+ 1 - 1
code/remove-logdirs.sh

@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-if [ ! "$(echo ./broker?)" = "./broker?" ]; then
+if [ "$(echo ./broker?)" = "./broker?" ]; then
     echo "ERROR: Can not find broker directories in current working dir."
     echo "       Run this script from your lab directory."
     exit 1