summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-07 13:45:31 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-07 13:48:44 -0400
commitd910a94df7d6f5c87897c248586cb65523457f99 (patch)
tree692446ec624e63ac8fa4aec72f0b5ee8e5d13723 /Command
parent7bd9a9cad8b413f4b09f9ab11a9d6d7ce72b8336 (diff)
prevent exporttree=yes on remotes that don't support exports
Don't allow "exporttree=yes" to be set when the special remote does not support exports. That would be confusing since the user would set up a special remote for exports, but `git annex export` to it would later fail. This commit was supported by the NSF-funded DataLad project.
Diffstat (limited to 'Command')
-rw-r--r--Command/Export.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Export.hs b/Command/Export.hs
index d397b2def..2cf453ea1 100644
--- a/Command/Export.hs
+++ b/Command/Export.hs
@@ -77,7 +77,7 @@ exportTempName ek = ExportLocation $
seek :: ExportOptions -> CommandSeek
seek o = do
r <- getParsed (exportRemote o)
- unlessM (exportSupported (exportActions r)) $
+ unlessM (isExportSupported r) $
giveup "That remote does not support exports."
new <- fromMaybe (giveup "unknown tree") <$>