summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavor <vorgrimmlerdavid@gmx.de>2011-11-29 16:04:47 +0100
committerdavor <vorgrimmlerdavid@gmx.de>2011-11-29 16:04:47 +0100
commit82696ddc414a24167f4065a953c261aed237178a (patch)
tree1608c2f57a3aed7ac6c6db8a14a786b2acc74164
parent1c7a3d482d4c5fe12f49bdfe73767d8c3f3b4851 (diff)
Added pc_type hybrid in parameter check.
-rw-r--r--5x_cv/lib/cv_am.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/5x_cv/lib/cv_am.rb b/5x_cv/lib/cv_am.rb
index 8cb8c10..a706043 100644
--- a/5x_cv/lib/cv_am.rb
+++ b/5x_cv/lib/cv_am.rb
@@ -99,8 +99,8 @@ def cv (args)
end
if ! args[11] == ""
- if ! (args[11] == "electronic" || args[11] == "geometrical" || args[11] == "topological" || args[11] == "constitutional")
- puts "pc_type must be \"electronic\", \"geometrical\", \"topological\" or \"constitutional\""
+ if ! (args[11] == "electronic" || args[11] == "geometrical" || args[11] == "topological" || args[11] == "constitutional" || args[11] == "hybrid")
+ puts "pc_type must be \"electronic\", \"geometrical\", \"topological\", \"hybrid\" or \"constitutional\""
exit 1
end
end