From ef39e9be63a4c335ddd5ddb3c98d4df2e88ef4d5 Mon Sep 17 00:00:00 2001 From: Ramses Sanchez-Hernandez <63934382+ramsessanchez@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:24:57 -0800 Subject: [PATCH] Update incrementMinorVersion.ps1 Update path to Constants.java --- Scripts/incrementMinorVersion.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/incrementMinorVersion.ps1 b/Scripts/incrementMinorVersion.ps1 index c064199fb94..07c918c60bf 100644 --- a/Scripts/incrementMinorVersion.ps1 +++ b/Scripts/incrementMinorVersion.ps1 @@ -54,11 +54,11 @@ function Update-MinorVersionNumber([version]$currentVersion) { function Update-MinorVersion() { $readmeFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../README.md" $propertiesFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../gradle.properties" - $telemetryFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../src/main/java/com/microsoft/graph/info/Constants.java" + $telemetryFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../src/main/java/com/microsoft/graph/beta/info/Constants.java" $currentVersion = Get-CurrentTelemetryVersion -telemetryFilePath $telemetryFilePath $nextVersion = Update-MinorVersionNumber -currentVersion $currentVersion Update-ReadmeVersion -version $nextVersion -readmeFilePath $readmeFilePath Update-TelemetryVersion -version $nextVersion -telemetryFilePath $telemetryFilePath Update-PackageVersion -version $nextVersion -propertiesFilePath $propertiesFilePath } -Update-MinorVersion \ No newline at end of file +Update-MinorVersion