File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,11 @@ if ($local -eq $true)
110
110
}
111
111
112
112
# Verify that module package is installed.
113
- $module_path = Join-Path $go_path " pkg\mod\$module @$webui_version "
113
+ $module_path = Join-Path $go_path " pkg\mod\$module @v $webui_version "
114
114
if (-not (Test-Path $module_path - PathType Container))
115
115
{
116
116
Write-Host " Error: '$module_path ' does not exist in GOPATH."
117
- Write-Host " Make sure to run 'go get $module @$webui_version ' first."
117
+ Write-Host " Make sure to run 'go get $module @v $webui_version ' first."
118
118
exit 1
119
119
}
120
120
Original file line number Diff line number Diff line change @@ -109,10 +109,10 @@ else
109
109
fi
110
110
111
111
# Verify that module package is installed.
112
- module_path=" $go_path /pkg/mod/$module @$webui_version "
112
+ module_path=" $go_path /pkg/mod/$module @v $webui_version "
113
113
if [ ! -d " $module_path " ]; then
114
114
echo " Error: \` $module_path \` does not exist in GOPATH."
115
- echo " Make sure to run \` go get $module @$webui_version \` first."
115
+ echo " Make sure to run \` go get $module @v $webui_version \` first."
116
116
exit 1
117
117
fi
118
118
You can’t perform that action at this time.
0 commit comments