ソースを参照

test: drop deprecated -i flag

It's been unnecessary since Go 1.10:

    https://github.com/golang/go/issues/41696
Benjamin Gilbert 1 年間 前
コミット
b991915048
1 ファイル変更1 行追加1 行削除
  1. 1 1
      test

+ 1 - 1
test

@@ -47,7 +47,7 @@ TEST=${split[@]/#/${REPO_PATH}/}
 echo "Running tests..."
 bin=$(mktemp)
 
-go test -c -o ${bin} ${COVER} -i ${TEST}
+go test -c -o ${bin} ${COVER} ${TEST}
 if [[ -z "$SUDO_PERMITTED" ]]; then
     echo "Test aborted for safety reasons. Please set the SUDO_PERMITTED variable."
     exit 1