diff --git a/holy-project.cabal b/holy-project.cabal index 45992e5..496b332 100644 --- a/holy-project.cabal +++ b/holy-project.cabal @@ -2,13 +2,13 @@ -- see http://haskell.org/cabal/users-guide/ name: holy-project -version: 0.1.0.1 +version: 0.1.1.0 synopsis: Start your Haskell project with cabal, git and tests. description: Holy Project is an application wich ask the user some questions and create files to help you starting a new Haskell project. There are example for tests using HUnit and SmallCheck - It initialize git, use cabal sandboxes, and provide + It initializes git, use cabal sandboxes, and provide two useful scripts: \"auto-update\" and \"interact\". homepage: http://github.com/yogsototh/holy-project license: MIT diff --git a/src/HolyProject.hs b/src/HolyProject.hs index 27fb14c..56f8fa9 100644 --- a/src/HolyProject.hs +++ b/src/HolyProject.hs @@ -196,6 +196,7 @@ createProject p = do ] -- Change some execution access _ <- setFileMode "auto-update" ((fst . head . readOct) "777") + _ <- setFileMode "interact" ((fst . head . readOct) "777") -- Execute some commands -- We don't really need them to be succesful -- So we try them anyway