2019-04-26 23:26:12 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
HTTP_PARSER_DIR=.dart_tool/http-parser
|
|
|
|
|
|
|
|
if [ ! -d "$HTTP_PARSER_DIR" ]
|
2019-04-27 19:12:09 +00:00
|
|
|
then
|
|
|
|
git clone --depth 1 https://github.com/nodejs/http-parser.git "$HTTP_PARSER_DIR"
|
2019-04-26 23:26:12 +00:00
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|