diff options
author | Reto Brunner <reto@labrat.space> | 2021-01-30 11:33:31 +0100 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2021-01-30 14:04:23 +0100 |
commit | 949781fa0a5f0654112b4f78558347ca991a89d3 (patch) | |
tree | 1d8d58e66b567709ed746654ceb92d75667557b4 /lib/open_darwin.go | |
parent | 9385827cae7bab6534933718d21eeb489448c476 (diff) | |
download | aerc-949781fa0a5f0654112b4f78558347ca991a89d3.tar.gz |
Refactor lib/open to accept user provided arguments
* Get rid of open_darwin It just lead to code duplication for a simple one string change. Instead we query it during initialization * Accept user provided arguments "open" on MacOS accepts things like -A to use a specific application Pass trough arguments the user provided in order to facilitate this * Refactor the function to a struct This makes it more convenient for the caller and avoids signatures like lib.OpenFile(nil, u.String(), nil) which are fairly unreadable
Diffstat (limited to 'lib/open_darwin.go')
-rw-r--r-- | lib/open_darwin.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/open_darwin.go b/lib/open_darwin.go deleted file mode 100644 index d98c898..0000000 --- a/lib/open_darwin.go +++ /dev/null @@ -1,21 +0,0 @@ -package lib - -import ( - "os/exec" -) - -func OpenFile(filename string, onErr func(error)) { - cmd := exec.Command("open", filename) - err := cmd.Start() - if err != nil && onErr != nil { - onErr(err) - return - } - - go func() { - err := cmd.Wait() - if err != nil && onErr != nil { - onErr(err) - } - }() -} |