mirror of
https://github.com/netdata/netdata.git
synced 2025-04-02 20:48:06 +00:00
Prevent pager from preventing non-interactive install (#14950)
* prevent pager from preventing non-interactive install * Update makeself-header.sh
This commit is contained in:
parent
7105e1e4ba
commit
aa1d9f0238
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ MS_PrintLicense()
|
|||
PAGER=\${PAGER:=more}
|
||||
if test x"\$licensetxt" != x; then
|
||||
PAGER_PATH=\`exec <&- 2>&-; which \$PAGER || command -v \$PAGER || type \$PAGER\`
|
||||
if test -x "\$PAGER_PATH"; then
|
||||
if test -x "\$PAGER_PATH" && test x"\$accept" != xy; then
|
||||
echo "\$licensetxt" | \$PAGER
|
||||
else
|
||||
echo "\$licensetxt"
|
||||
|
|
Loading…
Add table
Reference in a new issue