mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-05 04:17:52 +00:00
8 lines
103 B
Bash
8 lines
103 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
if [[ $EUID -ne 0 ]]
|
||
|
then
|
||
|
echo "This test script must be run as root" 1>&2
|
||
|
exit 1
|
||
|
fi
|