diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-13 01:43:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-13 01:43:24 -0400 |
commit | 4ecebfb218e58fb85a8e4484af93b5178a8046e7 (patch) | |
tree | 82981d149dfab8d6b8fb29e718dcf53aaa178f6d /Annex.hs | |
parent | 3a18b6d2ae95f8b536640f2438437d1d0a99082e (diff) |
bugfx
Diffstat (limited to 'Annex.hs')
-rw-r--r-- | Annex.hs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -97,6 +97,9 @@ unannexFile state file = do gitRun (repo state) ["commit", "-m", ("git-annex unannexed " ++ file), file] + -- git rm deletes empty directories; + -- put them back + createDirectoryIfMissing True (parentDir file) renameFile src file logStatus state key ValueMissing return () |