blob: e8a2783a6ae2bc7fbe25627afd3dd051d38526d2 [file] [log] [blame]
#!/bin/bash
# Copyright 2024 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Helper script to copy mobileprovisioning profile to
# bot's default location.
set -e
destination=$1
origin="$HOME/Library/Logs/DiagnosticReports/"
if [ -f "$origin"/llvm_*.crash ]; then
cp "$origin"/llvm_*.crash "$destination"/.
fi