#!/bin/bash

set -xe

echo "Preprocessors"

if [ ! -z $https_proxy ]; then
    echo "echo 'export https_proxy=$https_proxy' > /tmp/proxy.sh" > scripts/00-proxy
fi

exit 0