mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Completed last fix: don't use backquotes in here-documents; it confuses
ash. (The backquotes were only used to implement a slower version of
${foo-$bar} anyway.)
This commit is contained in:
parent
2c0f145076
commit
5e21ecefa9
1 changed files with 2 additions and 10 deletions
|
|
@ -319,21 +319,13 @@ X-send-pr-version: $VERSION
|
|||
|
||||
>Submitter-Id: $SUBMITTER
|
||||
>Originator: $ORIGINATOR
|
||||
>Organization: `if [ -n "$ORGANIZATION" ]; then
|
||||
echo "$ORGANIZATION"
|
||||
else
|
||||
echo "$ORGANIZATION_C" ;
|
||||
fi ; `
|
||||
>Organization: ${ORGANIZATION-$ORGANIZATION_C}
|
||||
>Confidential: $CONFIDENTIAL_C
|
||||
>Synopsis: $SYNOPSIS_C
|
||||
>Severity: $SEVERITY_C
|
||||
>Priority: $PRIORITY_C
|
||||
>Category: $CATEGORY_C
|
||||
>Release: `if [ -n "$DEFAULT_RELEASE" ]; then
|
||||
echo "$DEFAULT_RELEASE"
|
||||
else
|
||||
echo "$RELEASE_C"
|
||||
fi ; `
|
||||
>Release: ${DEFAULT_RELEASE-$RELEASE_C}
|
||||
>Class: $CLASS_C
|
||||
>Environment:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue