mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
16 lines
204 B
Bash
16 lines
204 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
if test -d "./mnt" ; then
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|
|
fi
|
|
|
|
set -e
|
|
|
|
mkdir mnt
|
|
./fuse_mnt ./mnt
|
|
./fuse_test ./mnt/memfd $@
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|