PoshCode Archive  Artifact [ab9747cc9f]

Artifact ab9747cc9ff49f456b22561c4e2a05c123030dd83dcd3b9db6827dba1c09e520:

  • File Bootstrap-psake-w-PsGet.ps1 — part of check-in [13b0341cfd] at 2018-06-10 13:32:35 on branch trunk — Bootstrap Powershell psake and ‘patch’ it if necessary. Use and modify as desired. (user: CodeMonkeyKing size: 2926)

# encoding: ascii
# api: powershell
# title: Bootstrap psake w/ PsGet
# description: Bootstrap Powershell psake and ‘patch’ it if necessary. Use and modify as desired.
# version: 0.1
# type: module
# author: CodeMonkeyKing
# license: CC0
# function: Get-MyModule
# x-poshcode-id: 3876
# x-archived: 2013-01-22T13:40:15
# x-published: 2013-01-11T16:36:00
#
#
# Get-MyModule adapted from http://blogs.technet.com/b/heyscriptingguy/archive/2010/07/11/hey-scripting-guy-weekend-scripter-checking-for-module-dependencies-in-windows-powershell.aspx
function Get-MyModule {
    param ([string] $name)
    write-host "Is '$name' already imported? " -NoNewline -ForegroundColor Cyan
    if (-not(Get-Module -name $name)) {
        write-host "No." -ForegroundColor Red
        write-host "Can we import '$name'? " -NoNewline
        if (Get-Module -ListAvailable | Where-Object {$_.Name -eq $name}) {
            write-host "Yes. Importing '$name'." -ForegroundColor Green
            import-module -name $name
            return $true
        }
        else {
            write-host "No. It is not available locally." -ForegroundColor Cyan
            return $false
        }
    }
    else {
        write-host "Yes." -ForegroundColor Green
        return $true
    }
}

function ContainsAny( [string]$s, [string[]] $items) {
    $matches = @($items | where { $_.Contains( $s ) })
    return [bool]$matches
}

# detect if psake is available
if (-not(Get-MyModule -name psake)) {
    #detect if PsGet available
    if (-not(Get-MyModule -name PsGet)) {
        write-host "Downloading and installing PsGet from repository..." -ForegroundColor Yellow
        (new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex
        import-module PsGet
    }

    write-host "Installing psake..." -ForegroundColor Yellow
    install-module psake
}

import-module psake

$output = invoke-psake
if (ContainsAny "Cannot bind argument to parameter 'Path' because it is an empty string." $output) {
    write-host "We need to patch psake.psm1... " -ForegroundColor Red -NoNewline
    $psakePath = "~\Documents\WindowsPowerShell\Modules\psake\psake.psm1"
    (get-content $psakePath) | ForEach-Object { return $_.Replace("[Parameter(Position = 0, Mandatory = 0)][string] `$buildFile,", "[Parameter(Position = 0, Mandatory = 0)][string] `$buildFile = `"default.ps1`",")} | Set-Content $psakePath
    import-module psake -Force

    $output = invoke-psake
    if (ContainsAny "Cannot bind argument to parameter 'Path' because it is an empty string." $output) {
        write-host "patch was unsuccessful!" -ForegroundColor Red
    }
    else {
        write-host "patch was successfully applied." -ForegroundColor Green
    }
}

write-host "Invoke-Psake available as alias 'psake'" -ForegroundColor Cyan
new-alias psake invoke-psake -Scope "Global"