Skip to content

Commit

Permalink
Fix PSAvoidUsingWriteHost
Browse files Browse the repository at this point in the history
  • Loading branch information
1kastner committed Dec 9, 2023
1 parent 5e6f193 commit 7eccb4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/download_prepared_sqlite_databases.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ $local_prepared_db_root_directory = "./notebooks/data/prepared_dbs"
foreach ($db in $sqlite_databases) {
$source_url = "$($web_root_directory)$($db).sqlite"
$target_path = "$($local_prepared_db_root_directory)/$($db).sqlite"
Write-Host "Download $source_url and save it at $target_path"
Write-Output "Download $source_url and save it at $target_path"
Invoke-WebRequest $source_url -OutFile $target_path
}

0 comments on commit 7eccb4c

Please sign in to comment.