Update announcement.gemspec

This commit is contained in:
chiu 2020-02-14 12:40:14 +08:00
parent c4a1034037
commit 2021f69449
1 changed files with 1 additions and 1 deletions

View File

@ -37,13 +37,13 @@ if old_gemfile_text != new_gemfile_text
a = Thread.new do a = Thread.new do
Bundler.with_clean_env do Bundler.with_clean_env do
puts ENV['PWD'] puts ENV['PWD']
sleep 0.5
system ("cd #{ENV['PWD']} && bundle update") system ("cd #{ENV['PWD']} && bundle update")
puts 'test123' puts 'test123'
end end
end end
a.priority = 2 a.priority = 2
sleep 1 sleep 1
a.join
puts '123' puts '123'
#Thread.exit #Thread.exit
end end