We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5df4a commit 589303fCopy full SHA for 589303f
2 files changed
test/Import-Bucket-Tests.ps1
@@ -19,5 +19,10 @@ $project_file_exclusions = @(
19
'supporting(\\|/)validator(\\|/)packages(\\|/)*'
20
)
21
22
+$bucketdir = $repo_dir
23
+if(Test-Path("$repo_dir\bucket")) {
24
+ $bucketdir = "$repo_dir\bucket"
25
+}
26
+
27
. "$psscriptroot\Import-File-Tests.ps1"
-. "$psscriptroot\Scoop-Manifest.Tests.ps1"
28
+. "$psscriptroot\Scoop-Manifest.Tests.ps1" -bucketdir $bucketdir
test/Scoop-Manifest.Tests.ps1
@@ -1,3 +1,4 @@
1
+param($bucketdir = "$psscriptroot\..\bucket\")
2
. "$psscriptroot\Scoop-TestLib.ps1"
3
. "$psscriptroot\..\lib\core.ps1"
4
. "$psscriptroot\..\lib\manifest.ps1"
0 commit comments