2020-12-06 06:57:37 -06:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-12-21 05:05:10 -06:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2020-12-06 06:57:37 -06:00
|
|
|
import sys
|
|
|
|
|
|
|
|
# Normalize file paths in output
|
|
|
|
for line in sys.stdin:
|
|
|
|
if line.startswith("..") and line.rstrip().endswith(".rs:"):
|
|
|
|
print(line.replace("\\", "/"), end='')
|
|
|
|
else:
|
|
|
|
print(line, end='')
|