Skip to content

Commit

Permalink
Fix #864
Browse files Browse the repository at this point in the history
Handle missing code subdirectory
  • Loading branch information
guillep committed Jun 18, 2018
1 parent 4f9e2b5 commit 7262543
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ basicExecute
| dialog |
dialog := IceTipLocalRepositoryPanel new
location: (self repository location ifNil: [ self defaultLocation ]);
subdirectory: self repository subdirectory;
subdirectory: (self repository subdirectory ifNil: [ self defaultSubdirectory ]);
yourself.
dialog openDialogWithSpec
okAction: [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
executing
defaultSubdirectory
^ IceLibgitRepository defaultCodeSubdirectory

0 comments on commit 7262543

Please sign in to comment.