nixpkgs/home/packages/custom/typo3-push-core/default.nix
Daniel Siepmann 09a81da417
Migrate shell alias for TYPO3 git push to custom command
To streamline the setup, as other things are also commands instead of
aliases.
2024-03-14 09:07:44 +01:00

12 lines
149 B
Nix

{
writeShellApplication
}:
writeShellApplication {
name = "custom-typo3-push-core";
text = ''
git push origin HEAD:refs/for/main
'';
}