Fix relative path in existing color script

This commit is contained in:
Kristian Hellang 2020-09-15 22:52:13 +02:00 committed by Patrik Svensson
parent a7b7d4e556
commit 0632b38477

View File

@ -3,7 +3,7 @@
##########################################################
$Output = Join-Path $PSScriptRoot "Temp"
$Source = Join-Path $PSScriptRoot "/../src/Spectre.Console"
$Source = Join-Path $PSScriptRoot "/../../src/Spectre.Console"
if(!(Test-Path $Output -PathType Container)) {
New-Item -ItemType Directory -Path $Output | Out-Null