packages feed

sandwich-0.1.0.0: src/Test/Sandwich/Formatters/TerminalUI/CrossPlatform.hs

-- |

module Test.Sandwich.Formatters.TerminalUI.CrossPlatform (
  openFileExplorerFolderPortable
  ) where

import Control.Monad
import System.Process

-- | TODO: report exceptions here
openFileExplorerFolderPortable folder = do
  void $ readCreateProcessWithExitCode (proc "xdg-open" [folder]) ""