mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-05 04:17:52 +00:00
e9b8216d21
directory from the trunk directory. First do a svn cp of all of the source up to trunk. This is supposed to preserve change history -- we'll see. The source remains untouched until this gets worked out. Also in preparation of bringing in the source collateral for the debian package into the repository. I expect that the top level will look like this: svn/ s3fs/ trunk/ tags/ branches/ dpkg/ trunk/ tags/ branches/ So far that's how it is looking. I'll be very careful to ensure integrity of the data. As a result this may be a multistep process. git-svn-id: http://s3fs.googlecode.com/svn/trunk@236 df820570-a93a-0410-bd06-b72b767a4274
8 lines
103 B
Bash
Executable File
8 lines
103 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
if [[ $EUID -ne 0 ]]
|
|
then
|
|
echo "This test script must be run as root" 1>&2
|
|
exit 1
|
|
fi
|