Skip to content

Commit

Permalink
Merge pull request #258 from 3pillarlabs/develop
Browse files Browse the repository at this point in the history
Merge PR #257
  • Loading branch information
sayantam authored Oct 26, 2021
2 parents d29b1a7 + 2eeb030 commit 61de165
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,11 @@ push_release_tag:

release_tag:
if [ -z "${PUSHED_RELEASE_TAG}" ]; then \
if ${CHANGES} docker-compose.yml; then \
${CHANGES} docker-compose.yml; \
docker_changed=$${?}; \
${CHANGES} hailstorm-cli/lib/hailstorm/cli/version.rb; \
cli_changed=$${?}; \
if [ $${docker_changed} -eq 0 ] || [ $${cli_changed} -eq 0 ]; then \
make push_release_tag; \
fi; \
fi
Expand Down
2 changes: 1 addition & 1 deletion hailstorm-cli/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
hailstorm-cli (1.0.18-java)
hailstorm-cli (1.0.17-java)
hailstorm (= 5.1.16)

GEM
Expand Down
2 changes: 1 addition & 1 deletion hailstorm-cli/lib/hailstorm/cli/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Version
module Hailstorm
module Cli
VERSION = '1.0.18'
VERSION = '1.0.17'
end
end
2 changes: 1 addition & 1 deletion hailstorm-cli/lib/hailstorm/controller/cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def current_project
def process_commands
logger.debug { ["\n", '*' * 80, "Application started at #{Time.now}", '-' * 80].join("\n") }

puts %{Welcome to the Hailstorm (version #{Hailstorm::VERSION}) shell.
puts %{Welcome to the Hailstorm shell (v.#{Hailstorm::Cli::VERSION}, gem v.#{Hailstorm::VERSION} ).
Type help to get started...
}
trap('INT', proc { logger.warn('Type [quit|exit|ctrl+D] to exit shell') })
Expand Down

0 comments on commit 61de165

Please sign in to comment.