forked from stove/dataset
11 lines
171 B
Bash
Executable file
11 lines
171 B
Bash
Executable file
#!/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
|