mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
fix if clause
This commit is contained in:
parent
5058f26106
commit
fb844abbd3
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ if [ "$1" = "status" ]; then
|
||||||
|
|
||||||
# temp storage data drive
|
# temp storage data drive
|
||||||
sudo mkdir -p /mnt/storage
|
sudo mkdir -p /mnt/storage
|
||||||
if [ "${hddFormat}" = "btrfs"]; then
|
if [ "${hddFormat}" = "btrfs" ]; then
|
||||||
# in btrfs setup the third partition is storage partition
|
# in btrfs setup the third partition is storage partition
|
||||||
sudo mount /dev/${hdd}3 /mnt/storage
|
sudo mount /dev/${hdd}3 /mnt/storage
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue