Skip to content

Commit

Permalink
made ctags change for both cmd calls
Browse files Browse the repository at this point in the history
  • Loading branch information
emcf committed Mar 24, 2024
1 parent 3446a3d commit 33b4d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compress.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def compress_with_ctags(chunk: Chunk, extension: str) -> Chunk:
]
else:
cmd = [
"./ctags " if os.name == 'nt' else "ctags "
"./ctags " if os.name == 'nt' else "/usr/bin/ctags-universal"
f"--languages={language}",
"--output-format=json",
"-f", "-",
Expand Down

0 comments on commit 33b4d8f

Please sign in to comment.