Hey, I want to use balc in a custom updater justfile recipe that I tell it to update a specific flake input, and it goes and checks if there are any new updates available for said specific flake input. It currently tries to update every single input
but I want it to only update the specified input I give it
My justfile script is this
[doc('Update a given flake input, {{INPUT}}')]
@update-input INPUT:
balc {{ INPUT }} || exit
git commit --quiet --message "chore: update {{ INPUT }}" flake.lock
if [ ! $(git ls-remote origin --quiet) ]; then \ echo "Can't reach the remote repo to push. Try pushing again later."; \ git restore flake.lock; \ exit 1; \ fi
git push origin master
Hey, I want to use balc in a custom updater justfile recipe that I tell it to update a specific flake input, and it goes and checks if there are any new updates available for said specific flake input. It currently tries to update every single input
menu/packages/balc/balc.fish
Line 30 in d37e7a9
My justfile script is this