ソースを参照

fix a shell typo that generated a bogus file

Thirnearez 7 年 前
コミット
2790402060
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      manage.sh

+ 1
- 1
manage.sh ファイルの表示

@@ -22,7 +22,7 @@ install_geckodriver() {
22 22
     echo '[!] Checking geckodriver'
23 23
     # TODO : check the current geckodriver version
24 24
     set -e
25
-    geckodriver -V 2>1 > /dev/null || NOTFOUND=1
25
+    geckodriver -V > /dev/null 2>&1 || NOTFOUND=1
26 26
     set +e
27 27
     if [ -z $NOTFOUND ]; then
28 28
 	return