install_vulkan_validation_linux.sh 502 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. BUILD_DIR=$TEMP_FOLDER/build
  7. TMP_RELEASE_DIR=$BUILD_DIR/install/lib/release
  8. OUT_RELEASE=$TARGET_INSTALL_ROOT/lib/release
  9. mkdir -p $OUT_RELEASE
  10. cp $TMP_RELEASE_DIR/* $OUT_RELEASE
  11. if [ $? -ne 0 ]; then
  12. echo Unable to copy $TMP_RELEASE_DIR to $OUT_RELEASE
  13. exit 1
  14. fi
  15. exit 0