commands: Make the server flag --renderToDisk into --renderToMemory (note)

Fixes #11987
This commit is contained in:
Bjørn Erik Pedersen 2024-02-05 09:44:28 +01:00
parent 58d7f83390
commit 9c6d377872
13 changed files with 28 additions and 28 deletions

View file

@ -1,7 +1,7 @@
# Test the hugo server command.
# We run these tests in parallel so let Hugo decide which port to use.
hugo server --gc &
hugo server --renderToMemory --gc &
waitServer

View file

@ -1,7 +1,7 @@
# Test the hugo server command when editing the config file.
# We run these tests in parallel so let Hugo decide which port to use.
hugo server &
hugo server --renderToMemory &
waitServer

View file

@ -2,7 +2,7 @@
# We run these tests in parallel so let Hugo decide which port to use.
# Render to disk so we can check the /public dir.
hugo server --renderToDisk &
hugo server &
waitServer

View file

@ -1,7 +1,7 @@
# Test the hugo server command.
# We run these tests in parallel so let Hugo decide which port to use.
hugo server &
hugo server --renderToMemory &
waitServer

View file

@ -1,4 +1,4 @@
hugo server &
hugo server --renderToMemory &
waitServer
stopServer

View file

@ -1,4 +1,4 @@
hugo server --disableLiveReload &
hugo server --renderToMemory --disableLiveReload &
waitServer
stopServer

View file

@ -1,4 +1,4 @@
hugo server --renderToDisk --disableLiveReload &
hugo server --disableLiveReload &
waitServer

View file

@ -1,4 +1,4 @@
hugo server --renderToDisk &
hugo server &
waitServer

View file

@ -1,7 +1,7 @@
# Test the hugo server command.
# We run these tests in parallel so let Hugo decide which port to use.
hugo server --renderStaticToDisk &
hugo server --renderToMemory --renderStaticToDisk &
waitServer

View file

@ -2,7 +2,7 @@
# We run these tests in parallel so let Hugo decide which port to use.
# Deliberately using the alias 'serve' here.
hugo serve &
hugo serve --renderToMemory &
waitServer