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

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

# Get file
keyringer_get_file "$RELATIVE_PATH/$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