forked from stove/dataset
12 lines
171 B
Text
12 lines
171 B
Text
|
#!/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
|