mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
14 lines
214 B
PowerShell
14 lines
214 B
PowerShell
#
|
|
# ps1 wrapper for psm1
|
|
#
|
|
#
|
|
Param(
|
|
[Parameter(Mandatory=$true)][string]$url,
|
|
[Parameter(Mandatory=$true)][string]$file
|
|
)
|
|
|
|
Import-Module ./Modules/download-module.psm1
|
|
|
|
DownloadFileWithProgress $url $file
|
|
|