This commit is contained in:
sqshq 2019-08-04 00:57:25 -04:00
parent 195b9dfb45
commit 8cd54658eb
3 changed files with 2 additions and 7 deletions

View File

@ -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)

View File

@ -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"
)

View File

@ -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