diff options
author | Jakob Unterwurzacher | 2015-10-05 20:32:10 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-10-05 20:32:10 +0200 |
commit | 552c32c5e9378b85e52c420c4dd2d7ccc827556f (patch) | |
tree | f13c1e1e8339252a6ee1c20a986ed65efd367f41 /gocryptfs.sh | |
parent | 53ecebc71ec132fc8e5fab486c63e13c0925d142 (diff) |
Move main binary to gocryptfs_main
That way the wrapper shell script can be named just "gocryptfs"
Diffstat (limited to 'gocryptfs.sh')
-rwxr-xr-x | gocryptfs.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gocryptfs.sh b/gocryptfs.sh deleted file mode 100755 index 689708c..0000000 --- a/gocryptfs.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash - -# Run the gocryptfs process in the background - -set -eu - -dir=$(dirname "$0") - -# This needs user input and cannot run in the background -if [[ $* == *--init* ]]; then - "$dir/gocryptfs" $* -else - "$dir/gocryptfs" $* & disown -fi |