All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cleydyr.dart.system.io.utils.SystemUtils Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.github.cleydyr.dart.system.io.utils;

import com.github.cleydyr.dart.release.DartSassReleaseParameter;
import java.nio.file.Path;
import java.nio.file.Paths;

public class SystemUtils {
    public static Path getExecutableTempFolder(DartSassReleaseParameter dartSassReleaseParameter) {
        String os = dartSassReleaseParameter.getOS();

        String arch = dartSassReleaseParameter.getArch();

        String version = dartSassReleaseParameter.getVersion();

        return Paths.get(System.getProperty("java.io.tmpdir"), "dart-sass-maven-plugin", os, arch, version);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy