update xdg-open command

This commit is contained in:
Jesse Duffield 2018-09-04 19:18:18 +10:00
parent 19a8029795
commit 3f68fe42cb
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@
```
os:
openCommand: 'bash -c \"xdg-open {{filename}} &>/dev/null &\"'
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
```
### OSX:

View file

@ -4,5 +4,5 @@ package config
func GetPlatformDefaultConfig() []byte {
return []byte(
`os:
openCommand: 'bash -c \"xdg-open {{filename}} &>/dev/null &\"'`)
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'`)
}