aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-09-02 11:43:44 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-03-24 14:46:46 -0300
commit2e987d14ca36042fe256702a3f68c491bfe44ac0 (patch)
tree3b2bf9d73e55fc30331d968b5786db4c3509e717
parentbe12c6d664052258bb15e63d136cc7606971fd7b (diff)
downloadkeyringer-2e987d14ca36042fe256702a3f68c491bfe44ac0.tar.gz
keyringer-2e987d14ca36042fe256702a3f68c491bfe44ac0.tar.bz2
Ensure destination folder exists at 'cp' action
-rw-r--r--ChangeLog4
-rwxr-xr-xlib/keyringer/actions/cp5
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 683c853..c8708e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-09-02 - Silvio Rhatto <rhatto@riseup.net>
+
+ Ensure destination folder exists at 'cp' action
+
2014-08-21 - 0.3.7 - Silvio Rhatto <rhatto@riseup.net>
Init: just set git user/mail if needed
diff --git a/lib/keyringer/actions/cp b/lib/keyringer/actions/cp
index 0629b61..f3ae20c 100755
--- a/lib/keyringer/actions/cp
+++ b/lib/keyringer/actions/cp
@@ -27,7 +27,10 @@ if ! echo "$ORIG" | grep -q '*' && [ ! -e "$KEYDIR/$RELATIVE_PATH/$ORIG" ]; then
exit 1
fi
-# Run move command
+# Ensure destination folder exists
+mkdir -p `dirname "$KEYDIR/$FILE"`
+
+# Run copy command
cd "$KEYDIR" && cp -a "./$RELATIVE_PATH/$ORIG" "./$FILE"
keyringer_exec git "$BASEDIR" add "keys/$FILE"
cd "$CWD"