platform/configure
2019-04-27 15:12:09 -04:00

9 lines
197 B
Bash
Executable file

#!/usr/bin/env bash
HTTP_PARSER_DIR=.dart_tool/http-parser
if [ ! -d "$HTTP_PARSER_DIR" ]
then
git clone --depth 1 https://github.com/nodejs/http-parser.git "$HTTP_PARSER_DIR"
exit $?
fi