From 8c0c4f4e5c4b515deb6748d212dbffd0ef683291 Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Wed, 7 Nov 2018 01:04:20 -0800 Subject: [PATCH] test fix --- notifiers/command.go | 5 ----- source/scss/base.scss | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/notifiers/command.go b/notifiers/command.go index fc523a25..ea8c5999 100644 --- a/notifiers/command.go +++ b/notifiers/command.go @@ -16,7 +16,6 @@ package notifiers import ( - "errors" "github.com/hunterlong/statup/core/notifier" "github.com/hunterlong/statup/types" "github.com/hunterlong/statup/utils" @@ -90,10 +89,6 @@ func runCommand(app, cmd string) (string, string, error) { return "", "", err } - if errStdout != nil || errStderr != nil { - return "", "", errors.New("failed to capture stdout or stderr") - } - outStr, errStr := string(stdout), string(stderr) return outStr, errStr, err } diff --git a/source/scss/base.scss b/source/scss/base.scss index 18aef902..9e5ffbd1 100644 --- a/source/scss/base.scss +++ b/source/scss/base.scss @@ -468,4 +468,4 @@ HTML,BODY { cursor: pointer; } -@import './mobile'; +@import 'mobile';