-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore gem
tzinfo-data
for Windows & JRuby (#176)
- Loading branch information
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4208bae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, I found the new change may cause bug on MacOS, following the failure on GitGub Action. Once the update been deleted, the GitHub Action went to normal.
Run bundle install --local
Could not find gem 'tzinfo (~> 1.2)' in any of the gem sources listed in your
Gemfile.
Error: Process completed with exit code 7.
4208bae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
macOS works fine with this commit, see https://github.com/cotes2020/jekyll-theme-chirpy/runs/1431406155?check_suite_focus=true
It seems that your error is caused by the bundle cache.
4208bae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see. Many thanks to you. I'll notice it if I change my desktop.
4208bae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cotes2020 I've noticed the same issue as @realjcluo, and indeed removing your changes or just condition in line 19:
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! }
helps.4208bae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @mpro7,
Gemfile
is OK, and the real cause isbund install --local
, for details see b874af2. BTW, @realjcluo should fetch that fix, too :)