mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
14 lines
410 B
Bash
Executable File
14 lines
410 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "Cleaning up frontend/node_modules folders"
|
|
rm -rf frontend/node_modules || true
|
|
|
|
echo "Cleaning up current docs folders except API"
|
|
# We need the api folder for openapi (https://community.openproject.org/work_packages/40352/activity)
|
|
find docs -mindepth 1 -maxdepth 1 -type d -not -name 'api' | xargs rm -rf
|
|
|
|
echo "Cleaning up angular cache"
|
|
rm -rf frontend/.angular || true
|