Skip to content

Commit

Permalink
Update filter_files.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lyxal authored Nov 8, 2023
1 parent 27b2486 commit bbebcbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
import json

if __name__ == "__main__":
files = sys.argv[1].split("\n")
files = [x for x in sys.argv[1].split("\n") if x.endswith("js") or x.endswith("map")]
print(json.dumps(files))

0 comments on commit bbebcbe

Please sign in to comment.