You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.cpp
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ int apiSys() {
63
63
intfileSys();
64
64
cout << "This application currently only supports GitHub's API system." << endl;
65
65
cout << "For your own reference the base URL is https://api.github.com/" << endl;
66
-
cout << "Choose whether you would like to embed a single repository or a list (found using filters). [R (single repo)/L (list of repos) ";
66
+
cout << "Choose whether you would like to embed a single repository or a list (found using filters). [R (single repo)/L (list of repos) [FUTURE RELEASE] ";
67
67
cin >> repoSearchType;
68
68
if (repoSearchType == "R" || repoSearchType == "r") {
69
69
cout << "Please type the owner of the repository you are trying to embed: ";
@@ -85,6 +85,10 @@ int apiSys() {
85
85
cin >> repoDesc;
86
86
returnfileSys();
87
87
}
88
+
else {
89
+
cout << "Sorry! The only option you have right now is to embed one repository at a time. Make sure to type R next time." << endl;
0 commit comments