Files
meta-rust/scripts/cleanup-env.sh
Derek Straka 34941a25e9 Always allow the clean-up to succeed
Signed-off-by: Derek Straka <derek@asterius.io>
2017-10-03 10:35:17 -04:00

9 lines
146 B
Bash
Executable File

#!/bin/bash -x
# Only attempt to unmount if the directory is already mounted
if mountpoint -q `pwd`/build; then
sudo umount build
fi
exit 0