Skip to content

Commit

Permalink
Merge pull request #1865 from AlexisCnockaert/1863-When-importing-exi…
Browse files Browse the repository at this point in the history
…sting-clone-assertion-failures-should-be-more-explicit

Fixes #1863 changed title desc for assertion failure
  • Loading branch information
jecisc authored Dec 4, 2024
2 parents be02c59 + 3dec68d commit d670ebf
Showing 1 changed file with 4 additions and 3 deletions.
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)
description: 'Project location does not seems to be a valid git repository.'
description: 'Project location does not seems to be a valid git repository'

]

0 comments on commit d670ebf

Please sign in to comment.