mirror of
https://github.com/sheumann/hush.git
synced 2025-01-08 03:30:42 +00:00
10 lines
280 B
Plaintext
10 lines
280 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Emit a msg to let user know this place was reached
|
||
|
echo "Copying to /home"
|
||
|
# Had a case where cp SEGVs, let's have diagnostics for it
|
||
|
cp -a /mnt /home || { echo "cp: $?"; exit 1; }
|
||
|
cd /home/mnt || { echo "cd: $?"; exit 1; }
|
||
|
exec ./build
|
||
|
echo "Failed to exec ./build"
|