1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-27 21:07:47 +00:00

Step 22: There's always something else

- also removed changelog.md from make_dist.sh
- make `curl` really quiet with >NUL, --silent does suppress the progress display only
This commit is contained in:
Roland Heyder 2022-08-19 00:26:13 +02:00
parent b63478b602
commit 46790c420f
2 changed files with 1 additions and 2 deletions

View file

@ -31,7 +31,6 @@ mkdir -p $DIST_ROOT/internal/c
cp -rp ./source $DIST_ROOT
cp -rp ./licenses $DIST_ROOT
cp ./CHANGELOG.md $DIST_ROOT
cp ./COPYING.txt $DIST_ROOT
cp ./README.md $DIST_ROOT
cp ./qb64pe.1 $DIST_ROOT

View file

@ -38,7 +38,7 @@ FUNCTION Wiki$ (PageName$) 'Read cached wiki page (download, if not yet cached)
END IF
'Check for curl
IF _SHELLHIDE("curl --version") <> 0 THEN
IF _SHELLHIDE("curl --version >NUL") <> 0 THEN
a$ = CHR$(10) + "{{PageInternalError}}" + CHR$(10)
IF PageName$ = "Initialize" THEN
a$ = a$ + "To be able to initialize the help system, "