Skip to content

Commit

Permalink
profile: fix file casing for case-sensitive platforms.
Browse files Browse the repository at this point in the history
Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Feb 19, 2025
1 parent 867cf50 commit 535268f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_files/build_environment/KrakenDeveloperProfile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $IsGitDirectory = './.git'
# Automatically get Kraken version.
if ((Test-Path -Path $KrakenGlobalView) -and (Test-Path -Path "$KrakenGlobalView/Sources/Kraken"))
{
$KRAKEN_CURRENT_VERSION_LINE = (Get-Content -Path "$KrakenGlobalView/Sources/Kraken/KR/KR.version.swift" -TotalCount 34)[-1]
$KRAKEN_CURRENT_VERSION_LINE = (Get-Content -Path "$KrakenGlobalView/Sources/Kraken/KR/KR.Version.swift" -TotalCount 34)[-1]
$KRAKEN_BUILDING_VERSION_VECTOR = $KRAKEN_CURRENT_VERSION_LINE.split("Pixar.GfVec3i(")[1].split("))")[0]
$KRAKEN_BUILDING_VERSION = $KRAKEN_BUILDING_VERSION_VECTOR -replace ', ', '.'
}
Expand Down

0 comments on commit 535268f

Please sign in to comment.