diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -14,12 +14,8 @@
 
 setup :: Args -> InstallFlags -> PackageDescription -> LocalBuildInfo -> IO ()
 setup _ _ desc lbi = do
-  putStrLn $ "Post Install: " ++ show binDir
-  putStrLn $ "Post Install: " ++ show libDir
-  putStrLn $ "Post Install: " ++ show dataDir
+  callCommand $ "chmod +x " ++ (show dataDir) ++ "setup-local.sh"
   callCommand $ "sudo " ++ (show dataDir) ++ "setup-local.sh"
   return ()
-  where binDir  = bindir  allDirs ++ "/"
-        libDir  = libdir  allDirs ++ "/"
-        dataDir = datadir allDirs ++ "/"
+  where dataDir = datadir allDirs ++ "/"
         allDirs = absoluteInstallDirs desc lbi NoCopyDest
diff --git a/hannahci.cabal b/hannahci.cabal
--- a/hannahci.cabal
+++ b/hannahci.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                hannahci
-version:             0.1.4.1
+version:             0.1.4.2
 synopsis:            Simple Continuous Integration/Deployment System
 -- description:         
 license:             AGPL-3
