You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.