1
0

Add 7digital binary proxying to ruby

This commit is contained in:
2026-01-11 11:45:37 +01:00
parent 4a7edf29cc
commit 3c313315c9
2 changed files with 17 additions and 2 deletions

9
7digital/Main.hs Normal file
View File

@@ -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