Created
August 16, 2020 12:26
-
-
Save fidacura/e1138e7337af992fe9f53224dc430d50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name = "assetfinder" | |
| type = "ext" | |
| function vertical(ctx, domain) | |
| print("in asset finder") | |
| local cmd = outputdir(ctx) .. "assetfinder --subs-only " .. domain | |
| local data = assert(io.popen(cmd)) | |
| for line in data:lines() do | |
| newname(ctx, line) | |
| end | |
| data:close() | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shouldn't you just have
?