diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | lib/tasks/info.rake | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ v7.13.0 - Ability to cancel all builds in commit at once - Improved Lint stability - Disable colors in rake tasks automatically (if IO is not a TTY) + - Implemented "rake env:info". Rake task to receive system information v7.12.1 - Runner without tag should pick builds without tag only diff --git a/lib/tasks/info.rake b/lib/tasks/info.rake index b3dc07b..18bfc2c 100644 --- a/lib/tasks/info.rake +++ b/lib/tasks/info.rake @@ -42,7 +42,7 @@ def run_and_match(command, regexp) `#{command}`.try(:match, regexp) end - # Check which OS is running + # Check which OS is running # # It will primarily use lsb_relase to determine the OS. # It has fallbacks to Debian, SuSE, OS X and systems running systemd. |