I've been trying to generate a custom action in Sourcetree that goes over a set of selected unstaged files and performs some function on them. My action is setup to use $REPO and $FILE which in the description says:
"$FILE: the path of the selected file(s) within the repository"
I'm running the action through a .bat file which looks something like this:
@echo off
call "<python path>" "...\myFile.py" --repo=%1 --file=%2
Then the python script should run all my important logic.
My issue is that when I select multiple files in Sourcetree and run the action, only one of them is passed into the batch file. How do I make it so I get all the selected files and not only one?