From 9f04507bd880343b5a99194d5c744879cdb9efe4 Mon Sep 17 00:00:00 2001 From: timerix Date: Wed, 15 Mar 2023 04:59:36 +0600 Subject: [PATCH] small wsl fix --- detect_os.sh | 3 +++ init.sh | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/detect_os.sh b/detect_os.sh index 6465d13..80a32e9 100644 --- a/detect_os.sh +++ b/detect_os.sh @@ -12,6 +12,9 @@ case "$uname_rezult" in GNU/Linux) OS=LINUX ;; + Linux) + OS=LINUX + ;; FreeBSD) OS=FREEBSD ;; diff --git a/init.sh b/init.sh index d73eb47..83893bc 100755 --- a/init.sh +++ b/init.sh @@ -1,10 +1,10 @@ #!/bin/bash +tabs 4 + # exit on errors set -eo pipefail -tabs 4 - source cbuild/colors.sh source cbuild/functions.sh source cbuild/detect_os.sh