Skip to content

[BUGFIX] Add missing <siteurl> argument to --create-site - #852

Open
froemken wants to merge 1 commit into
mainfrom
bugfix/816-create-site-siteurl
Open

[BUGFIX] Add missing <siteurl> argument to --create-site#852
froemken wants to merge 1 commit into
mainfrom
bugfix/816-create-site-siteurl

Conversation

@froemken

Copy link
Copy Markdown
Contributor

Fixes: #816


# Run TYPO3 CLI setup
vendor/bin/typo3 setup --create-site
vendor/bin/typo3 setup --create-site <siteurl>

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<siteurl> isn't safe to copy-paste here: < and > are shell redirection operators, so a reader who pastes the command literally gets a confusing shell error (bash tries to redirect stdin from a file named siteurl) instead of the CLI's own "value required" message.

Suggested change
vendor/bin/typo3 setup --create-site <siteurl>
# Replace example.org with your own domain
vendor/bin/typo3 setup --create-site https://example.org

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Error in a command in the Quick Start section

2 participants