We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7df2f8 commit 3fab9a8Copy full SHA for 3fab9a8
.github/deploy.sh
@@ -24,7 +24,7 @@ rm -rf out/master/ || exit 0
24
# Make the doc for master
25
mkdir out/master/
26
cp util/gh-pages/index.html out/master
27
-./util/export.py out/master/lints.json
+python ./util/export.py out/master/lints.json
28
29
# Save the doc for the current tag and point current/ to it
30
if [ -n "$TRAVIS_TAG" ]; then
util/export.py
@@ -21,15 +21,15 @@
21
22
# TODO: actual logging
23
def warn(*args):
- print(*args)
+ print(args)
def debug(*args):
31
def info(*args):
32
33
34
35
def parse_path(p="clippy_lints/src"):
0 commit comments