azure-sfmesh-maven-plugin/src/main/java/com/microsoft/azure/maven/servicefabric/Utils.java [107:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void checkSfctlInstallation(Log logger) throws MojoFailureException{
        if (Utils.isWindows()){
            Utils.executeCommand(logger, "sfctl --help  > NUL 2>&1");
        } else {
            Utils.executeCommand(logger, "sfctl --help >> /dev/null 2>&1");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azure-sfmesh-maven-plugin/src/main/java/com/microsoft/azure/maven/servicefabric/Utils.java [115:121]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void checkAzInstallation(Log logger) throws MojoFailureException{
        if (Utils.isWindows()){
            Utils.executeCommand(logger, "az mesh --help > NUL 2>&1");
        } else {
            Utils.executeCommand(logger, "az mesh --help >> /dev/null 2>&1");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



