ソースを参照

Bugfixes in Makefile

Yann Weber 9年前
コミット
4577f76c09
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      Makefile

+ 2
- 2
Makefile ファイルの表示

@@ -14,8 +14,8 @@ pip: cleanpycache
14 14
 cleandoc:
15 15
 	-rm -Rv ./doc/
16 16
 cleanpyc:
17
-	-find ./ |grep -E "\.pyc$$" |xargs rm -v 2>/dev/nulla
17
+	-find ./ |grep -E "\.pyc$$" |xargs rm -v 2>/dev/null
18 18
 cleanpycache: cleanpyc
19
-	-find ./ |grep '__pycache__' | xargs rmdir -v 2>/dev/null
19
+	-find ./ -type d |grep '__pycache__' | xargs rmdir -v 2>/dev/null
20 20
 
21 21
 clean: cleanpyc cleandoc cleanpycache

読み込み中…
キャンセル
保存