diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-01-11 11:45:37 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-01-11 11:45:37 +0100 |
| commit | 3c313315c93256a91085a8e51c7b89b380a32281 (patch) | |
| tree | d161af3017c5e750a7a570a1643d6ed93e99ab22 /7digital/Main.hs | |
| parent | 4a7edf29cc192a039dbfd59960569f8c4f127992 (diff) | |
| download | kazbek-3c313315c93256a91085a8e51c7b89b380a32281.tar.gz | |
Add 7digital binary proxying to ruby
Diffstat (limited to '7digital/Main.hs')
| -rw-r--r-- | 7digital/Main.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/7digital/Main.hs b/7digital/Main.hs new file mode 100644 index 0000000..26cdeb3 --- /dev/null +++ b/7digital/Main.hs @@ -0,0 +1,9 @@ +import Control.Monad (void) +import System.Process (rawSystem) +import System.Environment (getArgs) + +main :: IO () +main = do + arguments <- getArgs + void $ rawSystem "bundle" + $ "exec" : "./bin/7digital.rb" : arguments |
