From 8457da3e27f6c4f434aa697ae1b2f3bbfaf98148 Mon Sep 17 00:00:00 2001 From: Kasra Bigdeli Date: Sat, 26 Jan 2019 15:51:59 -0800 Subject: [PATCH] Warnings are now more obvious during installation. --- src/utils/CaptainInstaller.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/CaptainInstaller.ts b/src/utils/CaptainInstaller.ts index 7f18a10..34af8c7 100644 --- a/src/utils/CaptainInstaller.ts +++ b/src/utils/CaptainInstaller.ts @@ -44,7 +44,7 @@ function checkSystemReq() { .then(function(output) { if (output.OperatingSystem.toLowerCase().indexOf('ubuntu') < 0) { console.log( - 'Warning!! CapRover and Docker work best on Ubuntu - specially when it comes to storage drivers.' + '******* Warning ******* CapRover and Docker work best on Ubuntu - specially when it comes to storage drivers.' ) } else { console.log(' Ubuntu detected.') @@ -52,7 +52,7 @@ function checkSystemReq() { if (output.Architecture.toLowerCase().indexOf('x86') < 0) { console.log( - 'Warning!! Default CapRover is compiled for X86 CPU. To use CapRover on other CPUs you can build from the source code' + '******* Warning ******* Default CapRover is compiled for X86 CPU. To use CapRover on other CPUs you can build from the source code' ) } else { console.log(' X86 CPU detected.') @@ -62,7 +62,7 @@ function checkSystemReq() { if (totalMemInMb < 1000) { console.log( - 'Warning!! With less than 1GB RAM, complex Docker builds might fail, see CapRover system requirements.' + '******* Warning ******* With less than 1GB RAM, Docker builds might fail, see CapRover system requirements.' ) } else { console.log(' Total RAM ' + totalMemInMb + ' MB')