mirror of
				https://gitea.com/actions/setup-java.git
				synced 2025-11-02 07:47:06 +00:00 
			
		
		
		
	Update installer.ts
This commit is contained in:
		@@ -149,9 +149,14 @@ export class DragonwellDistribution extends JavaBase {
 | 
			
		||||
 | 
			
		||||
        // Some version of Dragonwell JDK are numerated with help of non-semver notation (more then 3 digits).
 | 
			
		||||
        // Common practice is to transform excess digits to the so-called semver build part, which is prefixed with the plus sign, to be able to operate with them using semver tools.
 | 
			
		||||
        if (jdkVersion.split('.').length > 3) {
 | 
			
		||||
          jdkVersion = convertVersionToSemver(jdkVersion);
 | 
			
		||||
        }
 | 
			
		||||
        const jdkVersionNums: string[] = jdkVersion
 | 
			
		||||
          .replace('+', '.')
 | 
			
		||||
          .split('.');
 | 
			
		||||
        jdkVersion = convertVersionToSemver(
 | 
			
		||||
          `${jdkVersionNums.slice(0, 3).join('.')}.${
 | 
			
		||||
            jdkVersionNums[jdkVersionNums.length - 1]
 | 
			
		||||
          }`
 | 
			
		||||
        );
 | 
			
		||||
 | 
			
		||||
        for (const edition in archMap) {
 | 
			
		||||
          eligibleVersions.push({
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user