summaryrefslogtreecommitdiff
path: root/qemu_multiarch_testing/hdc.dir/init (plain)
blob: 692371db662b7bed801f845f2972cbe65b2f1fb7
1#!/bin/sh
2
3# Emit a msg to let user know this place was reached
4echo "Copying to /home"
5# Had a case where cp SEGVs, let's have diagnostics for it
6cp -a /mnt /home || { echo "cp: $?"; exit 1; }
7cd /home/mnt || { echo "cd: $?"; exit 1; }
8exec ./build
9echo "Failed to exec ./build"
10