Merge pull request #702 from daxgames/msys_bash

Msys bash
This commit is contained in:
Martin Kemp
2015-11-23 23:31:02 +00:00
8 changed files with 199 additions and 34 deletions

View File

@ -111,4 +111,10 @@ if($Compile) {
Write-Warning "This cannot be a release. Test build only!"
}
# Put vendor\cmder.sh in /etc/profile.d so it runs when we start bash or mintty
if ( (Test-Path $($SaveTo + "git-for-windows/etc/profile.d") ) ) {
write-verbose "Adding cmder.sh /etc/profile.d"
Copy-Item $($SaveTo + "cmder.sh") $($SaveTo + "git-for-windows/etc/profile.d/cmder.sh")
}
Write-Verbose "All good and done!"