Compare commits

...

2 Commits

Author SHA1 Message Date
Raphaël Vinot d484e97332
Merge pull request #73 from nosecguy/patch-1
Update mount_dest.sh
2020-02-07 16:54:25 +01:00
nosecguy f7ffb7318a
Update mount_dest.sh
Groomer complains Source and Destination device does not exist. "10-usb.rules" creates SYMLINK to "/dev/source_key%n" and "/dev/dest_key%n", but mount_dest.sh checks for "/dev/source_key" and "/dev/dest_key"
Solution tested on RPi4
2020-02-07 16:35:53 +01:00
1 changed files with 4 additions and 4 deletions

View File

@ -22,15 +22,15 @@ check_not_root() {
}
check_source_exists() {
if [ ! -b "${SRC_DEV}" ]; then
echo "GROOMER: Source device (${SRC_DEV}) does not exist."
if [ ! -b "${SRC_DEV}1" ]; then
echo "GROOMER: Source device (${SRC_DEV}1) does not exist."
exit
fi
}
check_dest_exists() {
if [ ! -b "${DST_DEV}" ]; then
echo "GROOMER: Destination device (${DST_DEV}) does not exist."
if [ ! -b "${DST_DEV}1" ]; then
echo "GROOMER: Destination device (${DST_DEV}1) does not exist."
exit
fi
}