소스 검색

Fixes removepyc script

Ask Solem 13 년 전
부모
커밋
68af118f81
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      contrib/release/removepyc.sh

+ 1 - 1
contrib/release/removepyc.sh

@@ -1,3 +1,3 @@
 #!/bin/bash
-(cd "{$1:-.}";
+(cd "${1:-.}";
         find . -name "*.pyc" | xargs rm -- 2>/dev/null) || echo "ok"