File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,18 @@ $Cef32vcx = Join-Path (Join-Path $Cef32 'libcef_dll_wrapper') 'libcef_dll_wrappe
26
26
$Cef64 = Join-Path $WorkingDir ' cef_binary_3.y.z_windows64'
27
27
$Cef64vcx = Join-Path (Join-Path $Cef64 ' libcef_dll_wrapper' ) ' libcef_dll_wrapper.vcxproj'
28
28
29
+ function Write-Diagnostic
30
+ {
31
+ param (
32
+ [Parameter (Position = 0 , Mandatory = $true , ValueFromPipeline = $true )]
33
+ [string ] $Message
34
+ )
35
+
36
+ Write-Host
37
+ Write-Host $Message - ForegroundColor Green
38
+ Write-Host
39
+ }
40
+
29
41
# Set CefVersion based on tag name - must start with leading "v" e.g. v3.3163.1663.g416ffeb
30
42
if ($env: APPVEYOR_REPO_TAG -eq " True" )
31
43
{
@@ -66,18 +78,6 @@ function Invoke-BatchFile
66
78
Remove-Item $batFile
67
79
}
68
80
69
- function Write-Diagnostic
70
- {
71
- param (
72
- [Parameter (Position = 0 , Mandatory = $true , ValueFromPipeline = $true )]
73
- [string ] $Message
74
- )
75
-
76
- Write-Host
77
- Write-Host $Message - ForegroundColor Green
78
- Write-Host
79
- }
80
-
81
81
function Die
82
82
{
83
83
param (
You can’t perform that action at this time.
0 commit comments