This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd "$(dirname $0)"
|
|
|
|
|
|
|
|
if [[ -z "$(which docker)" ]]; then
|
|
|
|
echo "Please install Docker from https://www.docker.com"
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cmd="docker run --rm -v "$(pwd):/opt/wappalyzer" -it wappalyzer/dev"
|
|
|
|
|
|
|
|
$cmd sh -c "yarn install; cd src/drivers/webextension; yarn install"
|
|
|
|
|
|
|
|
$cmd ./bin/run links
|
|
|
|
$cmd ./bin/run $@
|