9 lines
182 B
Text
9 lines
182 B
Text
|
#!/usr/bin/env bash
|
||
|
HTTP_PARSER_DIR=.dart_tool/http-parser
|
||
|
|
||
|
if [ ! -d "$HTTP_PARSER_DIR" ]
|
||
|
git clone https://github.com/nodejs/http-parser.git "$HTTP_PARSER_DIR"
|
||
|
exit $?
|
||
|
fi
|
||
|
|