Skip to content

Commit

Permalink
Added consideration for BIZSIDE_ENV=education.
Browse files Browse the repository at this point in the history
  • Loading branch information
Y-Asahi-dev committed Jan 7, 2025
1 parent a5c6d84 commit d953a80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bizside/task_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def self.rails_env
if ENV['RAILS_ENV'].to_s.empty?
unless ENV['BIZSIDE_ENV'].to_s.empty?
case ENV['BIZSIDE_ENV']
when 'production', 'staging'
when 'production', 'staging', 'education'
ret = ENV['RAILS_ENV'] = 'production'
else
ret = ENV['RAILS_ENV'] = ENV['BIZSIDE_ENV']
Expand Down

0 comments on commit d953a80

Please sign in to comment.