1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

http: replace escape() with escape_url()

This commit is contained in:
Alexander Medvednikov
2019-07-31 20:53:07 +02:00
parent 550e8cd0cb
commit d3d4ee6b39
5 changed files with 28 additions and 8 deletions

View File

@ -5,7 +5,7 @@ for f in `find . -type f -name '*_test.v'`; do
v $f || echo "fail"
done
for f in examples/*.v ; do
for f in `find examples -type f -name '*.v'`; do
echo "Building $f..."
v $f || echo "fail"
done