diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | make_travis_yml.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 6079e61c1..5c42a24a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,7 +74,7 @@ script: - cabal build --ghc-options=$GHCOPTS # this builds all libraries and executables (including tests/benchmarks) - cabal test - cabal check - - cabal sdist # tests that a source-distribution can be generated + - ./dist/setup/setup sdist # tests that a source-distribution can be generated # Check that the resulting source distribution can be built & installed. # If there are no other `.tar.gz` files in `dist`, this can be even simpler: diff --git a/make_travis_yml.hs b/make_travis_yml.hs index c01e8e0c9..82d328018 100644 --- a/make_travis_yml.hs +++ b/make_travis_yml.hs @@ -165,7 +165,7 @@ genTravisFromCabalFile fn xpkgs = do , " - cabal build --ghc-options=$GHCOPTS # this builds all libraries and executables (including tests/benchmarks)" , " - cabal test" , " - cabal check" - , " - cabal sdist # tests that a source-distribution can be generated" + , " - ./dist/setup/setup sdist # tests that a source-distribution can be generated" , "" , "# Check that the resulting source distribution can be built & installed." , "# If there are no other `.tar.gz` files in `dist`, this can be even simpler:" |