This commit is contained in:
Joey Hess 2010-10-13 01:43:24 -04:00
parent 3a18b6d2ae
commit 4ecebfb218

View file

@ -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 ()