From b317ad80963fbba4e7723ab1f47a95efbcb88da2 Mon Sep 17 00:00:00 2001 From: Maurice Kalinowski Date: Wed, 23 May 2018 13:46:41 +0200 Subject: Remove hardcoded download path Previously all files got downloaded to a hardcoded path, including the username for the CI machines. Usually, it does not fit the username of a local development machine, complicating to reproduce bugs. Introduce Get-(Default)DownloadLocation functions in helpers to specify the default download location. This helps to run the provisioning scripts on a local machine. Change-Id: I761a92bf5e3e774358756a95dddb9a5d6ee54db9 Reviewed-by: Oliver Wolff --- coin/provisioning/common/windows/helpers.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'coin/provisioning/common/windows/helpers.ps1') diff --git a/coin/provisioning/common/windows/helpers.ps1 b/coin/provisioning/common/windows/helpers.ps1 index 8a4b452e..28ccaeaf 100644 --- a/coin/provisioning/common/windows/helpers.ps1 +++ b/coin/provisioning/common/windows/helpers.ps1 @@ -68,6 +68,17 @@ function BadParam throw("You must specify $Description") } +function Get-DefaultDownloadLocation +{ + return $env:USERPROFILE + "\downloads\" +} + +function Get-DownloadLocation +{ + Param ([string]$TargetName = $(BadParam("a target filename"))) + return (Get-DefaultDownloadLocation) + $TargetName +} + function Download { Param ( -- cgit v1.2.3