Detect the cloning of an empty git repo properly

This commit is contained in:
Nick O'Leary
2019-02-14 14:00:25 +00:00
parent 057127f4de
commit afd2ccfb4f
3 changed files with 10 additions and 2 deletions

View File

@@ -666,6 +666,10 @@ RED.projects = (function() {
// This is handled via a runtime notification.
dialog.dialog("close");
},
'missing_package_file': function(error) {
// This is handled via a runtime notification.
dialog.dialog("close");
},
'project_empty': function(error) {
// This is handled via a runtime notification.
dialog.dialog("close");
@@ -1565,6 +1569,10 @@ RED.projects = (function() {
// This is handled via a runtime notification.
dialog.dialog("close");
},
'missing_package_file': function(error) {
// This is handled via a runtime notification.
dialog.dialog("close");
},
'project_empty': function(error) {
// This is handled via a runtime notification.
dialog.dialog("close");