We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff34393 commit 81ef373Copy full SHA for 81ef373
scripts/upload.hs
@@ -0,0 +1,14 @@
1
+#!/usr/bin/env stack
2
+{- stack
3
+--resolver lts-3.10
4
+--install-ghc runghc
5
+-}
6
+
7
+import Data.Foldable
8
+import System.Process
9
10
+main :: IO ()
11
+main = do
12
+ sources <- words <$> readFile "sources.txt"
13
+ forM_ sources $ \ source -> do
14
+ callCommand ("stack upload " ++ source)
scripts/upload.sh
0 commit comments