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 db2402a commit eb909f0Copy full SHA for eb909f0
.github/workflows/test.yml
@@ -68,8 +68,12 @@ jobs:
68
$env:PSModulePath = "$modulesPath;$env:PSModulePath"
69
Write-Host "PSModulePath: $env:PSModulePath" -ForegroundColor Cyan
70
71
- # Import dependency modules
72
- $dependencies = @('GenXdev.Helpers', 'GenXdev.FileSystem', 'GenXdev.Windows')
+ # Import dependency modules in correct order (dependencies first)
+ $dependencies = @(
73
+ 'GenXdev.Helpers', # No dependencies
74
+ 'GenXdev.Windows', # Depends on Helpers
75
+ 'GenXdev.FileSystem' # Depends on Helpers, Windows
76
+ )
77
foreach ($dep in $dependencies) {
78
$depPath = Join-Path $modulesPath $dep
79
if (Test-Path $depPath) {
0 commit comments