Skip to content

Commit

Permalink
Update CheckJavaVersion.yml
Browse files Browse the repository at this point in the history
Remove extra spaces.
  • Loading branch information
crowbarmaster authored Apr 14, 2024
1 parent 4198050 commit 435531e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CheckJavaVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
$javaManifestUri = 'https://piston-meta.mojang.com/mc/game/version_manifest_v2.json';
$javaManifestcontent = Invoke-WebRequest -UseBasicParsing -Headers $ConnectionHeaders -Uri $javaManifestUri;
$javaManifestJson = $javaManifestcontent | ConvertFrom-Json;
$localJavaManifestJson = Get-Content "MMS_Files\\java_version_prop_manifest.json" | ConvertFrom-Json;
$localJavaManifestJson = Get-Content "MMS_Files\\java_version_prop_manifest.json" | ConvertFrom-Json;
$latestRelease = $javaManifestJson.versions | Select-Object -First 1;
$latestLocalRelease = $localJavaManifestJson | Select-Object -Last 1;
echo "javaVer=0" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append;
Expand Down

0 comments on commit 435531e

Please sign in to comment.