trm-client 3.1.4 → 3.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -78,6 +78,9 @@ function executeCommand(args) {
|
|
|
78
78
|
try {
|
|
79
79
|
trm_core_1.Inquirer.inquirer = _getInquirer(InquirerType.CLI);
|
|
80
80
|
trm_core_1.Logger.logger = _getLogger(args.logType, args.verbose, args.logOutputFolder);
|
|
81
|
+
if (!/^win/i.test(process.platform)) {
|
|
82
|
+
trm_core_1.Logger.warning(`Running on untested OS ${process.platform}! Some features aren't tested yet.`);
|
|
83
|
+
}
|
|
81
84
|
const requiresConnection = args.requiresConnection;
|
|
82
85
|
const requiresTrmDependencies = args.requiresTrmDependencies;
|
|
83
86
|
const requiresRegistry = args.requiresRegistry;
|