Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1863 changed title desc for assertion failure #1865

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Iceberg-TipUI/IceTipLocalRepositoryPanel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,12 @@ IceTipLocalRepositoryPanel >> validate [

self
assert: self location isNotNil
description: 'Project location must exist!'.
description: 'Please provide a project location!'.
self
assert: self location exists
description: 'Project location must exist!'.
self
self
assert: (IceRepositoryCreator isGitRoot: self location)
AlexisCnockaert marked this conversation as resolved.
Show resolved Hide resolved
description: 'Project location does not seems to be a valid git repository.'
description: 'Project location does not seems to be a valid git repository'

]
Loading