diff options
author | Urbain Vaes <urbain@vaes.uk> | 2016-01-25 10:37:28 +0000 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2016-01-25 10:37:28 +0000 |
commit | 0e54dbcaeb3f20c9e189a7d10e24f3676284795d (patch) | |
tree | f2b3603701ca673521352f5ee644ddbb1e0212d1 /install.yaml | |
parent | b134601c97657450621b89c8528de7e31dc41cdf (diff) |
Create missing directories in dotfiles deployment
Diffstat (limited to 'install.yaml')
-rw-r--r-- | install.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.yaml b/install.yaml index 0212602..b2e883c 100644 --- a/install.yaml +++ b/install.yaml @@ -1,6 +1,6 @@ # Commands to install / uninstall symlinks commands: - up: rm -rf {target} && ln -s {path}/{file} {target} + up: rm -rf {target} && mkdir -p $(dirname {target}) && ln -s {path}/{file} {target} down: rm -rf {target} |