aboutsummaryrefslogtreecommitdiff
path: root/build/pass
diff options
context:
space:
mode:
Diffstat (limited to 'build/pass')
-rw-r--r--build/pass28
1 files changed, 0 insertions, 28 deletions
diff --git a/build/pass b/build/pass
deleted file mode 100644
index 0c06564..0000000
--- a/build/pass
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-set -e
-set -x
-
-_install() {
-remote=""
-dest=""
-while [ $# -gt 0 ] ; do case $1 in
- -r) remote="$2"; shift ; shift ;;
- -d) dest="$2"; shift ; shift ;;
- -m) _mkopts="$2"; shift ; shift ;;
- *) echo "Unknown option $1" ; return ;;
-esac ; done
-
-if ! [ -d "$dest" ] ; then
- git clone "$remote" "$dest"
-fi
-
-cd "$dest"
-
-git pull --ff-only origin master
-
-sudo make $_mkopts install
-}
-
-_install -d /v/pub/pass -r https://git.zx2c4.com/password-store
-_install -d /v/pub/pass-otp -r https://github.com/tadfisher/pass-otp \
- -m PREFIX=/usr