diff options
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} |