Julian Ospald
32f3c36589
This fixes unix socket errors, because there's a max path length for those.
20 lines
278 B
Bash
20 lines
278 B
Bash
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
BUILD_DIR=$CI_PROJECT_DIR
|
|
echo "Cleaning $BUILD_DIR"
|
|
cd $HOME
|
|
test -n "$BUILD_DIR"
|
|
shopt -s extglob
|
|
rm -Rf "$BUILD_DIR"/!(out)
|
|
if [ "${OS}" = "WINDOWS" ] ; then
|
|
rm -Rf /c/ghcup
|
|
fi
|
|
|
|
if [ "${OS}" = "DARWIN" ] ; then
|
|
rm -Rf /private/tmp/.brew_tmp
|
|
fi
|
|
|
|
exit 0
|