From 8cd54658ebfa3e3b35e10320f18f87f6faaed530 Mon Sep 17 00:00:00 2001 From: sqshq Date: Sun, 4 Aug 2019 00:57:25 -0400 Subject: [PATCH] 1.0.1 --- README.md | 2 +- console/console.go | 2 +- data/int_basic.go | 5 ----- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index dfae9bf..ba9c526 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ sudo chmod +x /usr/local/bin/sampler sudo wget https://github.com/sqshq/sampler/releases/download/v1.0.0/sampler-1.0.0-linux-amd64 -O /usr/local/bin/sampler sudo chmod +x /usr/local/bin/sampler ``` -### Windows +### Windows (experimental) Recommended to use with advanced console emulators, e.g. [Cmder](https://cmder.net/) [Download .exe](https://github.com/sqshq/sampler/releases/download/v1.0.0/sampler-1.0.0-windows-amd64.exe) diff --git a/console/console.go b/console/console.go index 7824eba..9580e36 100644 --- a/console/console.go +++ b/console/console.go @@ -14,7 +14,7 @@ const ( ColumnsCount = 80 RowsCount = 40 AppTitle = "sampler" - AppVersion = "1.0.0" + AppVersion = "1.0.1" AppLicenseWarning = "UNLICENSED. FOR NON-COMMERCIAL USE ONLY. VISIT WWW.SAMPLER.DEV" ) diff --git a/data/int_basic.go b/data/int_basic.go index 3cd648a..39fe594 100644 --- a/data/int_basic.go +++ b/data/int_basic.go @@ -27,11 +27,6 @@ func (s *BasicInteractiveShell) init() error { cmd := exec.Command("sh", "-c", s.item.initScripts[0]) enrichEnvVariables(cmd, s.variables) - err := cmd.Wait() - if err != nil { - return err - } - stdout, err := cmd.StdoutPipe() if err != nil { return err