mirror of
https://github.com/cmderdev/cmder.git
synced 2025-01-11 00:39:08 +08:00
add -noVendor flag
This commit is contained in:
parent
f58652fc28
commit
d94fe86b2a
@ -16,6 +16,10 @@
|
|||||||
.\build.ps1 -Compile
|
.\build.ps1 -Compile
|
||||||
|
|
||||||
Recompile the launcher executable if you have the requisite build tools for C++ installed.
|
Recompile the launcher executable if you have the requisite build tools for C++ installed.
|
||||||
|
.EXAMPLE
|
||||||
|
.\build.ps1 -Compile -NoVendor
|
||||||
|
|
||||||
|
Skip all downloads and only build launcher.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
.\build -verbose
|
.\build -verbose
|
||||||
|
|
||||||
@ -49,6 +53,9 @@ Param(
|
|||||||
# Config folder location
|
# Config folder location
|
||||||
[string]$config = "$PSScriptRoot\..\config",
|
[string]$config = "$PSScriptRoot\..\config",
|
||||||
|
|
||||||
|
# Using this option will skip all downloads and only build launcher
|
||||||
|
[switch]$noVendor,
|
||||||
|
|
||||||
# New launcher if you have MSBuild tools installed
|
# New launcher if you have MSBuild tools installed
|
||||||
[switch]$Compile
|
[switch]$Compile
|
||||||
)
|
)
|
||||||
@ -60,28 +67,6 @@ $cmder_root = Resolve-Path "$PSScriptRoot\.."
|
|||||||
. "$PSScriptRoot\utils.ps1"
|
. "$PSScriptRoot\utils.ps1"
|
||||||
$ErrorActionPreference = "Stop"
|
$ErrorActionPreference = "Stop"
|
||||||
|
|
||||||
# Check for requirements
|
|
||||||
Ensure-Exists $sourcesPath
|
|
||||||
Ensure-Executable "7z"
|
|
||||||
|
|
||||||
# Get the vendor sources
|
|
||||||
$sources = Get-Content $sourcesPath | Out-String | Convertfrom-Json
|
|
||||||
|
|
||||||
Push-Location -Path $saveTo
|
|
||||||
New-Item -Type Directory -Path (Join-Path $saveTo "/tmp/") -ErrorAction SilentlyContinue >$null
|
|
||||||
|
|
||||||
$vend = $pwd
|
|
||||||
|
|
||||||
# Preserve modified (by user) ConEmu setting file
|
|
||||||
if ($config -ne "") {
|
|
||||||
$ConEmuXml = Join-Path $saveTo "conemu-maximus5\ConEmu.xml"
|
|
||||||
if (Test-Path $ConEmuXml -pathType leaf) {
|
|
||||||
$ConEmuXmlSave = Join-Path $config "ConEmu.xml"
|
|
||||||
Write-Verbose "Backup '$ConEmuXml' to '$ConEmuXmlSave'"
|
|
||||||
Copy-Item $ConEmuXml $ConEmuXmlSave
|
|
||||||
} else { $ConEmuXml = "" }
|
|
||||||
} else { $ConEmuXml = "" }
|
|
||||||
|
|
||||||
# Kill ssh-agent.exe if it is running from the $env:cmder_root we are building
|
# Kill ssh-agent.exe if it is running from the $env:cmder_root we are building
|
||||||
foreach ($ssh_agent in $(Get-Process ssh-agent -ErrorAction SilentlyContinue)) {
|
foreach ($ssh_agent in $(Get-Process ssh-agent -ErrorAction SilentlyContinue)) {
|
||||||
if ([string]$($ssh_agent.path) -Match [string]$cmder_root.replace('\','\\')) {
|
if ([string]$($ssh_agent.path) -Match [string]$cmder_root.replace('\','\\')) {
|
||||||
@ -90,33 +75,6 @@ foreach ($ssh_agent in $(Get-Process ssh-agent -ErrorAction SilentlyContinue)) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($s in $sources) {
|
|
||||||
Write-Verbose "Getting vendored $($s.name) $($s.version)..."
|
|
||||||
|
|
||||||
# We do not care about the extensions/type of archive
|
|
||||||
$tempArchive = "tmp/$($s.name).tmp"
|
|
||||||
Delete-Existing $tempArchive
|
|
||||||
Delete-Existing $s.name
|
|
||||||
|
|
||||||
Download-File -Url $s.url -File $vend\$tempArchive -ErrorAction Stop
|
|
||||||
Extract-Archive $tempArchive $s.name
|
|
||||||
|
|
||||||
if ((Get-Childitem $s.name).Count -eq 1) {
|
|
||||||
Flatten-Directory($s.name)
|
|
||||||
}
|
|
||||||
|
|
||||||
# Write current version to .cmderver file, for later.
|
|
||||||
"$($s.version)" | Out-File "$($s.name)/.cmderver"
|
|
||||||
}
|
|
||||||
|
|
||||||
# Restore ConEmu user configuration
|
|
||||||
if ($ConEmuXml -ne "") {
|
|
||||||
Write-Verbose "Restore '$ConEmuXmlSave' to '$ConEmuXml'"
|
|
||||||
Copy-Item $ConEmuXmlSave $ConEmuXml
|
|
||||||
}
|
|
||||||
|
|
||||||
Pop-Location
|
|
||||||
|
|
||||||
if ($Compile) {
|
if ($Compile) {
|
||||||
# Check for requirements
|
# Check for requirements
|
||||||
Ensure-Executable "msbuild"
|
Ensure-Executable "msbuild"
|
||||||
@ -135,32 +93,87 @@ if ($Compile) {
|
|||||||
if ($LastExitCode -ne 0) {
|
if ($LastExitCode -ne 0) {
|
||||||
throw "MSBuild failed to build the launcher executable."
|
throw "MSBuild failed to build the launcher executable."
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
Write-Verbose "Successfully built Cmder v$version!"
|
|
||||||
if ( $Env:APPVEYOR -eq 'True' ) {
|
|
||||||
Add-AppveyorMessage -Message "Building Cmder v$version was successful." -Category Information
|
|
||||||
}
|
|
||||||
if ( $Env:GITHUB_ACTIONS -eq 'true' ) {
|
|
||||||
Write-Output "::notice title=Build Complete::Building Cmder v$version was successful."
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Pop-Location
|
Pop-Location
|
||||||
} else {
|
|
||||||
Write-Warning "You are not building a launcher, Use -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 (-Not $noVendor) {
|
||||||
if ( (Test-Path $($saveTo + "git-for-windows/etc/profile.d") ) ) {
|
# Check for requirements
|
||||||
|
Ensure-Exists $sourcesPath
|
||||||
|
Ensure-Executable "7z"
|
||||||
|
|
||||||
|
# Get the vendor sources
|
||||||
|
$sources = Get-Content $sourcesPath | Out-String | Convertfrom-Json
|
||||||
|
|
||||||
|
Push-Location -Path $saveTo
|
||||||
|
New-Item -Type Directory -Path (Join-Path $saveTo "/tmp/") -ErrorAction SilentlyContinue >$null
|
||||||
|
|
||||||
|
$vend = $pwd
|
||||||
|
|
||||||
|
# Preserve modified (by user) ConEmu setting file
|
||||||
|
if ($config -ne "") {
|
||||||
|
$ConEmuXml = Join-Path $saveTo "conemu-maximus5\ConEmu.xml"
|
||||||
|
if (Test-Path $ConEmuXml -pathType leaf) {
|
||||||
|
$ConEmuXmlSave = Join-Path $config "ConEmu.xml"
|
||||||
|
Write-Verbose "Backup '$ConEmuXml' to '$ConEmuXmlSave'"
|
||||||
|
Copy-Item $ConEmuXml $ConEmuXmlSave
|
||||||
|
} else { $ConEmuXml = "" }
|
||||||
|
} else { $ConEmuXml = "" }
|
||||||
|
|
||||||
|
foreach ($s in $sources) {
|
||||||
|
Write-Verbose "Getting vendored $($s.name) $($s.version)..."
|
||||||
|
|
||||||
|
# We do not care about the extensions/type of archive
|
||||||
|
$tempArchive = "tmp/$($s.name).tmp"
|
||||||
|
Delete-Existing $tempArchive
|
||||||
|
Delete-Existing $s.name
|
||||||
|
|
||||||
|
Download-File -Url $s.url -File $vend\$tempArchive -ErrorAction Stop
|
||||||
|
Extract-Archive $tempArchive $s.name
|
||||||
|
|
||||||
|
if ((Get-Childitem $s.name).Count -eq 1) {
|
||||||
|
Flatten-Directory($s.name)
|
||||||
|
}
|
||||||
|
|
||||||
|
# Write current version to .cmderver file, for later.
|
||||||
|
"$($s.version)" | Out-File "$($s.name)/.cmderver"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Restore ConEmu user configuration
|
||||||
|
if ($ConEmuXml -ne "") {
|
||||||
|
Write-Verbose "Restore '$ConEmuXmlSave' to '$ConEmuXml'"
|
||||||
|
Copy-Item $ConEmuXmlSave $ConEmuXml
|
||||||
|
}
|
||||||
|
|
||||||
|
# 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"
|
Write-Verbose "Adding cmder.sh /etc/profile.d"
|
||||||
Copy-Item $($saveTo + "cmder.sh") $($saveTo + "git-for-windows/etc/profile.d/cmder.sh")
|
Copy-Item $($saveTo + "cmder.sh") $($saveTo + "git-for-windows/etc/profile.d/cmder.sh")
|
||||||
}
|
}
|
||||||
|
|
||||||
# Replace /etc/profile.d/git-prompt.sh with cmder lambda prompt so it runs when we start bash or mintty
|
# Replace /etc/profile.d/git-prompt.sh with cmder lambda prompt so it runs when we start bash or mintty
|
||||||
if ( !(Test-Path $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh.bak") ) ) {
|
if ( !(Test-Path $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh.bak") ) ) {
|
||||||
Write-Verbose "Replacing /etc/profile.d/git-prompt.sh with our git-prompt.sh"
|
Write-Verbose "Replacing /etc/profile.d/git-prompt.sh with our git-prompt.sh"
|
||||||
Move-Item $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh") $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh.bak")
|
Move-Item $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh") $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh.bak")
|
||||||
Copy-Item $($saveTo + "git-prompt.sh") $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh")
|
Copy-Item $($saveTo + "git-prompt.sh") $($saveTo + "git-for-windows/etc/profile.d/git-prompt.sh")
|
||||||
|
}
|
||||||
|
|
||||||
|
Pop-Location
|
||||||
|
}
|
||||||
|
|
||||||
|
if (-Not $Compile -Or $noVendor) {
|
||||||
|
Write-Warning "You are not building the full project, Use -Compile without -noVendor"
|
||||||
|
Write-Warning "This cannot be a release. Test build only!"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
Write-Verbose "Successfully built Cmder v$version!"
|
||||||
|
|
||||||
|
if ( $Env:APPVEYOR -eq 'True' ) {
|
||||||
|
Add-AppveyorMessage -Message "Building Cmder v$version was successful." -Category Information
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( $Env:GITHUB_ACTIONS -eq 'true' ) {
|
||||||
|
Write-Output "::notice title=Build Complete::Building Cmder v$version was successful."
|
||||||
}
|
}
|
||||||
|
|
||||||
Write-Host -ForegroundColor green "All good and done!"
|
Write-Host -ForegroundColor green "All good and done!"
|
||||||
|
Loading…
Reference in New Issue
Block a user