1234567891011121314151617181920212223 |
- #!/usr/bin/env bash
- #
- # Copyright (c) Contributors to the Open 3D Engine Project.
- # For complete copyright and license terms please see the LICENSE at the root of this distribution.
- #
- # SPDX-License-Identifier: Apache-2.0 OR MIT
- #
- #
- set -o errexit # exit on the first failure encountered
- {
- pushd @CPACK_PACKAGING_INSTALL_PREFIX@
- # delete __pycache__
- rm -rf scripts/o3de/o3de/__pycache__
- # delete the user folder
- rm -rf bin/Linux/profile/Default/user
- # delete any generated egg-link files
- find . -type d -name *.egg-info -prune -exec rm -rf {} \;
- popd
- } &> /dev/null # hide output
|