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?
Just a result of not being knowledgeable enough about command line arguments. Here's the solution I came up with:
https://stackoverflow.com/questions/72972692/sourcetree-custom-action-file
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.