File: hugo__errors.txt

package info (click to toggle)
hugo 0.155.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 43,804 kB
  • sloc: javascript: 31,879; ansic: 2,350; xml: 350; makefile: 197; sh: 110
file content (18 lines) | stat: -rw-r--r-- 548 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Testing error output.

# The hugo mod get command handles flags a little special, but the -h flag should print the help.
hugo mod get -h
stdout 'Resolves dependencies in your current Hugo project'

# Invalid flag. Should print an error message to stderr and the help to stdout.
! hugo --asdf
stderr 'unknown flag: --asdf'
stdout 'hugo is the main command'

# This should fail the build, print an error message to stderr, but no help output.
! hugo
! stdout 'hugo is the main command'
stderr 'failed to load config'

-- hugo.toml --
invalid: toml