소스 검색

Changed position of (min/max)depth options to find command to prevent warning on linux.

Luke Taylor 18 년 전
부모
커밋
b011acbfe6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      releasebuild.sh

+ 1 - 1
releasebuild.sh

@@ -120,7 +120,7 @@ fi
 
 pushd $SITE_DIR
 
-find . -name "*.html" -maxdepth 3 -mindepth 2 | xargs perl -i -p -e 's#\./css/#\.\./css/#;' \
+find . -maxdepth 3 -mindepth 2 -name "*.html" | xargs perl -i -p -e 's#\./css/#\.\./css/#;' \
    -e 's/Maven Surefire Report/Unit Tests/;' \
    -e 's/Cobertura Test Coverage/Test Coverage/;' \
    -e 's/A successful project.*greatly appreciated\.//;'