aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v5/db_create.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sisu/v5/db_create.rb')
-rw-r--r--lib/sisu/v5/db_create.rb14
1 files changed, 11 insertions, 3 deletions
diff --git a/lib/sisu/v5/db_create.rb b/lib/sisu/v5/db_create.rb
index 78277c8b..142318f5 100644
--- a/lib/sisu/v5/db_create.rb
+++ b/lib/sisu/v5/db_create.rb
@@ -85,8 +85,16 @@ module SiSU_DbCreate
def create_db
@env=SiSU_Env::InfoEnv.new(@opt.fns)
tell=(@sql_type==:sqlite) \
- ? SiSU_Screen::Ansi.new(@opt.act[:color_state][:set],'Create SQLite db tables in:',%{"#{@file}"})
- : SiSU_Screen::Ansi.new(@opt.act[:color_state][:set],'Create pgSQL db tables in:',%{"#{Db[:name_prefix]}#{@env.path.base_markup_dir_stub}"})
+ ? SiSU_Screen::Ansi.new(
+ @opt.act[:color_state][:set],
+ 'Create SQLite db tables in:',
+ %{"#{@file}"}
+ )
+ : SiSU_Screen::Ansi.new(
+ @opt.act[:color_state][:set],
+ 'Create pgSQL db tables in:',
+ %{"#{Db[:name_prefix]}#{@env.path.base_markup_dir_stub}"}
+ )
if (@opt.act[:verbose][:set]==:on \
|| @opt.act[:verbose_plus][:set]==:on \
|| @opt.act[:maintenance][:set]==:on)
@@ -96,7 +104,7 @@ module SiSU_DbCreate
end
def output_dir?
dir=SiSU_Env::InfoEnv.new('')
- if @opt.cmd =~/d/
+ if @opt.act[:sqlite][:set]==:on
dir.path.webserv_stub_ensure
end
end