aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/actions/del
blob: 61a68da50fd06a9599687cd5af5d68c44efc484f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
#
# Remove files.
#

# Load functions
LIB="`dirname $0`/../functions"
source "$LIB" maintenance $* || exit 1

# Get file
keyringer_get_file "$2"

# Set options
if [ ! -z "$3" ]; then
  shift 2
  OPTS="$*"
fi

# Remove
if [ -d "$BASEDIR/.git" ]; then
  keyringer_exec git "$BASEDIR" rm $OPTS "keys/$FILE"
fi