1
0
forked from 0ad/0ad
0ad/build/workspaces/clean-workspaces.sh
Itms 5c1195f66a New Linux/BSD build flow.
Getting and building libraries is now clearly separated from preparing
workspaces.
Some disk space is automatically reclaimed and cleanup is streamlined.
2024-08-20 19:09:23 +02:00

16 lines
534 B
Bash
Executable File

#!/bin/sh
# This script remains for backwards compatibility, but consists of a single
# git command.
cd "$(dirname $0)/../../"
git clean -fx build source
echo "WARNING: This script has been split with libraries/clean-source-libs.sh"
echo "If you want to fix a problem with bundled libs, it's the other script"
echo "you want to invoke."
echo "WARNING: This script is deprecated and might be removed in a future"
echo "release. You can run 'git clean -f build source' from the repository"
echo "root to clean up build workspaces."