Files
meta-rust/scripts/cleanup-env.sh
2016-11-30 15:39:38 -05:00

9 lines
146 B
Bash
Executable File

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