git-sync: Wrap both binaries (#130515)

Co-authored-by: Jörg Thalheim <joerg@thalheim.io>

authored by

Ivan Malison
Jörg Thalheim
and committed by
GitHub
6ff64c29 1443590c

+6 -3
+6 -3
pkgs/applications/version-management/git-and-tools/git-sync/default.nix
··· 28 28 gnused 29 29 ]; 30 30 31 - fixupPhase = '' 32 - patchShebangs $out/bin 31 + postFixup = '' 32 + wrap_path="${wrapperPath}":$out/bin 33 33 34 34 wrapProgram $out/bin/git-sync \ 35 - --prefix PATH : "${wrapperPath}" 35 + --prefix PATH : $wrap_path 36 + 37 + wrapProgram $out/bin/git-sync-on-inotify \ 38 + --prefix PATH : $wrap_path 36 39 ''; 37 40 38 41 meta = {