Skip to content

Commit

Permalink
Exclude yi-intero from uploadable packages for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ethercrow authored and Jaro Reinders committed Jul 29, 2017
1 parent bb3dc9b commit 33306ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions maintainer/upload.hs
@@ -1,6 +1,6 @@
#!/usr/bin/env runghc

import Control.Monad (forM_)
import Control.Monad (forM_, when)
import Data.List (isPrefixOf)
import System.Directory (getDirectoryContents)
import System.Process (callProcess)
Expand All @@ -14,4 +14,5 @@ main = do
callProcess "stack" ["sdist", p]

forM_ packages $ \p ->
callProcess "stack" ["upload", "--no-signature", p]
when (p /= "yi-intero") $
callProcess "stack" ["upload", "--no-signature", p]
2 changes: 1 addition & 1 deletion yi-intero/package.yaml
@@ -1,5 +1,5 @@
name: yi-intero
version: 0.14.0
version: 0.14.1
synopsis: Intero support for Yi
license: GPL-2
maintainer: Yi developers <yi-devel@googlegroups.com>
Expand Down

0 comments on commit 33306ea

Please sign in to comment.