Skip to content

Commit 05aacb2

Browse files
author
rvdwegen
committed
more stuff back to root
1 parent 25e98ca commit 05aacb2

7 files changed

Lines changed: 5 additions & 5 deletions

File tree

Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tools/GitHub/Invoke-ListCommunityRepos.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Invoke-ListCommunityRepos {
2424

2525
if (!$Request.Query.WriteAccess) {
2626
$CIPPRoot = (Get-Item (Get-Module -Name CIPPCore).ModuleBase).Parent.Parent.FullName
27-
$CommunityRepos = Join-Path -Path $CIPPRoot -ChildPath 'Resources\CommunityRepos.json'
27+
$CommunityRepos = Join-Path -Path $CIPPRoot -ChildPath 'CommunityRepos.json'
2828
$DefaultCommunityRepos = Get-Content -Path $CommunityRepos -Raw | ConvertFrom-Json
2929

3030
$DefaultsMissing = $false

Modules/CIPPCore/Public/Get-CIPPTimerFunctions.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function Get-CIPPTimerFunctions {
4040
}
4141

4242
$CIPPRoot = (Get-Item $CIPPCoreModuleRoot).Parent.Parent
43-
$CippTimers = Get-Content -Path $CIPPRoot\Resources\CIPPTimers.json
43+
$CippTimers = Get-Content -Path $CIPPRoot\CIPPTimers.json
4444

4545
if ($ListAllTasks) {
4646
$Orchestrators = $CippTimers | ConvertFrom-Json | Sort-Object -Property Priority

Modules/CippExtensions/Public/Gradient/New-GradientServiceSyncRun.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ function New-GradientServiceSyncRun {
2727
}
2828

2929

30-
Set-Location (Get-Item $PSScriptRoot).Parent.Parent.Parent.Parent.FullName
31-
$ConvertTable = Import-Csv Resources\ConversionTable.csv
30+
Set-Location (Get-Item $PSScriptRoot).Parent.FullName
31+
$ConvertTable = Import-Csv ConversionTable.csv
3232
$Table = Get-CIPPTable -TableName cachelicenses
3333
$LicenseTable = Get-CIPPTable -TableName ExcludedLicenses
3434
$ExcludedSkuList = Get-CIPPAzDataTableEntity @LicenseTable

Modules/CippExtensions/Public/Hudu/Invoke-HuduExtensionSync.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function Invoke-HuduExtensionSync {
3434

3535
# Import license mapping
3636
Set-Location (Get-Item $PSScriptRoot).Parent.Parent.Parent.Parent.FullName
37-
$LicTable = Import-Csv Resources\ConversionTable.csv
37+
$LicTable = Import-Csv ConversionTable.csv
3838

3939
$CompanyResult.Logs.Add('Starting Hudu Extension Sync')
4040

0 commit comments

Comments
 (0)