From 5063e95e78fcb0ab81ef56a2e1727a84ab93b788 Mon Sep 17 00:00:00 2001 From: Jonathan Palley Date: Thu, 18 Oct 2012 20:08:57 +0800 Subject: [PATCH] symlink fix --- file | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file b/file index 5fbbf0fbb1c..e9def9b9784 100755 --- a/file +++ b/file @@ -340,7 +340,7 @@ def main(): if src: src = os.path.expanduser(src) - if src is not None and os.path.isdir(path): + if src is not None and os.path.isdir(path) and state != "link": params['path'] = path = os.path.join(path, os.path.basename(src)) mode = params.get('mode', None)