mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 09:49:12 +08:00
Merge branch '1.1.4.1' into development
This commit is contained in:
commit
75801cbdc8
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@ config/.history
|
||||
Thumbs.db
|
||||
*.exe
|
||||
build/
|
||||
Version v*
|
BIN
msvcp110.dll
BIN
msvcp110.dll
Binary file not shown.
BIN
msvcp120.dll
Normal file
BIN
msvcp120.dll
Normal file
Binary file not shown.
BIN
msvcr110.dll
BIN
msvcr110.dll
Binary file not shown.
BIN
msvcr120.dll
Normal file
BIN
msvcr120.dll
Normal file
Binary file not shown.
@ -1,3 +1,11 @@
|
||||
function Ensure-Exists ($path) {
|
||||
if (-not (Test-Path $path)) {
|
||||
Write-Error "Missing required $path! Ensure it is installed"
|
||||
exit 1
|
||||
}
|
||||
return $true > $null
|
||||
}
|
||||
|
||||
function Ensure-Executable ($command) {
|
||||
try { Get-Command $command -ErrorAction Stop > $null }
|
||||
catch {
|
||||
|
Loading…
Reference in New Issue
Block a user