1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 11:40:38 +00:00

Step 14: So all good things are three

- also switched curl to silent mode to shorten build logs
This commit is contained in:
Roland Heyder 2022-08-13 02:44:11 +02:00
parent 14f2cd29e0
commit a402ae4429
2 changed files with 7 additions and 3 deletions

View file

@ -20,10 +20,14 @@ case "$buildPlatform" in
esac
# populate internal/help
# 1. copy static pages from repo: to dist:
# 2. update maintained pages from the Wiki
# 1. create folder in dist:
# 2. copy static pages from repo: to dist:
# 3. update maintained pages from the Wiki
# 4. cleanup internal/temp (repo:)
mkdir -p $DIST_ROOT/internal/help
cp -rp ./internal/help $DIST_ROOT/internal/
./qb64pe -u
rm -f ./internal/temp/files.txt
mkdir -p $DIST_ROOT
mkdir -p $DIST_ROOT/internal

View file

@ -75,7 +75,7 @@ FUNCTION Wiki$ (PageName$) 'Read cached wiki page (download, if not yet cached)
s2$ = "</textarea>"
'Download page using curl
SHELL _HIDE "curl -o " + CHR$(34) + outputFile$ + CHR$(34) + " " + url$
SHELL _HIDE "curl -s -o " + CHR$(34) + outputFile$ + CHR$(34) + " " + url$
fh = FREEFILE
OPEN outputFile$ FOR BINARY AS #fh 'get new content
a$ = SPACE$(LOF(fh))