aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-11-26 01:32:09 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-11-26 01:32:09 -0800
commit92872439b9e76ec881edae187d5fb137f02ce39b (patch)
treeb50f3b863ca3d8461d7c664007125006a890304b /scripts
parent8883e40aaadbba91610342fda42d304a4cad0e68 (diff)
downloadvcpkg-92872439b9e76ec881edae187d5fb137f02ce39b.tar.gz
vcpkg-92872439b9e76ec881edae187d5fb137f02ce39b.zip
[fetchDependency[ Make parameter mandatory
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fetchDependency.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 596845acb..6e022928f 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -1,6 +1,6 @@
[CmdletBinding()]
param(
- [string]$Dependency
+ [Parameter(Mandatory=$true)][string]$Dependency
)
$scriptsDir = split-path -parent $MyInvocation.MyCommand.Definition