Point the net installer to the 'devel' branches
[msysgit.git] / share / msysGit / make-manifests.sh
blob094ca5e62efb35d2d52f878404fa70e8bc6ae580
1 #!/bin/sh
3 # in its infinite wisdom, Microsoft decided that Vista should treat _all_
4 # programs _containing_ the substring "setup", "install" or "update" as
5 # administrative programs.
7 # And now we have to say _explicitely_ that they are not. Great.
9 cd /
11 for program in $(ls bin/*.exe | grep -ie setup -e install -e update -e patch)
13 test -f $program.manifest || {
14 base=$(basename $program)
15 sed "s/patch.exe/$base/" \
16 < /bin/patch.exe.manifest > $program.manifest
17 git update-index --add $program.manifest
19 done