Files
meta-rust/scripts/cleanup-env.sh
2017-11-03 13:50:12 -04:00

15 lines
214 B
Bash
Executable File

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