Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ rm -rf out/master/ || exit 0
# Make the doc for master
mkdir out/master/
cp util/gh-pages/index.html out/master
./util/export.py out/master/lints.json
python ./util/export.py out/master/lints.json

# Save the doc for the current tag and point current/ to it
if [ -n "$TRAVIS_TAG" ]; then
Expand Down
6 changes: 3 additions & 3 deletions util/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@

# TODO: actual logging
def warn(*args):
print(*args)
print(args)


def debug(*args):
print(*args)
print(args)


def info(*args):
print(*args)
print(args)


def parse_path(p="clippy_lints/src"):
Expand Down