소스 검색

The -a flag to prac also implies preprocessing

Ian Goldberg 1 년 전
부모
커밋
641820f96a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docker/run-experiment

+ 1 - 1
docker/run-experiment

@@ -9,7 +9,7 @@ preproc=0
 opts=""
 while getopts paot:ex arg; do
     opts+=" -${arg} ${OPTARG}"
-    if [ "$arg" = "p" ]; then
+    if [ "$arg" = "p" -o "$arg" = "a" ]; then
         preproc=1
     fi
 done