Renku is a simple cross platform Image Board and Booru browser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
621 B

4 years ago
4 years ago
  1. #!/usr/bin/env bash
  2. SOURCE="${BASH_SOURCE[0]}"
  3. while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
  4. DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
  5. SOURCE="$(readlink "$SOURCE")"
  6. [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
  7. done
  8. DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
  9. pushd $DIR
  10. source _variables.sh
  11. cd ..
  12. echo "Cleaning application directories"
  13. rm -rf ${DISTRIBUTABLES_DIRECTORY} ${BUILD_DIRECTORY} ${DIST_DIRECTORY}
  14. popd