diff options
author | Bjørn Erik Pedersen <[email protected]> | 2016-04-05 22:20:39 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2016-04-05 22:20:39 +0200 |
commit | 54750b078059734c3f2047ae3f56cac64a9f0666 (patch) | |
tree | 1c26f4b0534696268cac1a8485e96626222ba81f /hugolib/robotstxt_test.go | |
parent | 43b5dfabb5fb36bb4574289912c66a46ef20ffce (diff) | |
download | hugo-54750b078059734c3f2047ae3f56cac64a9f0666.tar.gz hugo-54750b078059734c3f2047ae3f56cac64a9f0666.zip |
Do not create robots.txt by default
Meny people, including me, have a custom robots.txt in static.
Also remove that option from the command line; it doesn't feel
important enough.
Fixes ##2049
Diffstat (limited to 'hugolib/robotstxt_test.go')
-rw-r--r-- | hugolib/robotstxt_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hugolib/robotstxt_test.go b/hugolib/robotstxt_test.go index b0a843a7e..b88d2243b 100644 --- a/hugolib/robotstxt_test.go +++ b/hugolib/robotstxt_test.go @@ -36,6 +36,7 @@ func TestRobotsTXTOutput(t *testing.T) { hugofs.InitMemFs() viper.Set("baseurl", "http://auth/bub/") + viper.Set("enableRobotsTXT", true) s := &Site{ Source: &source.InMemorySource{ByteSource: WEIGHTED_SOURCES}, |