Fix the add and rm commands to fail if no patch is applied
[stgit] / stgit / commands / rm.py
index 2005005..91908a1 100644 (file)
@@ -41,4 +41,7 @@ def func(parser, options, args):
     if len(args) < 1:
         parser.error('incorrect number of arguments')
 
+    if not crt_series.get_current():
+        raise CmdException, 'No patches applied'
+
     git.rm(args, options.force)