Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 2be7838

Browse files
author
Jonathan Diehl
committed
Updated wording as suggested by @gruehle
1 parent cbe31b5 commit 2be7838

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,16 +131,17 @@
131131
return;
132132
}
133133
document.write("<h1>Missing libraries</h1>");
134-
document.write("<p>The following required libraries were not found:</p>");
134+
document.write("<p>Oops! One or more required libraries could not be found.</p>");
135135
document.write("<ul>");
136136
for (key in deps) {
137137
if (!deps[key]) {
138138
document.write("<li>" + key + "</li>");
139139
}
140140
}
141141
document.write("</ul>");
142-
document.write("<p>If you have checked up Brackets from github, please update the submodules by running the following command:</p>");
142+
document.write("<p>If you are running from a local copy of the Brackets source, please make sure submodules are updated by running:</p>");
143143
document.write("<pre>git submodule update --init</pre>");
144+
document.write("<p>If you're still having problems, please contact us via one of the channels mentioned in the <a target=\"blank\" href=\"../README.md\">README</a></p>.");
144145
document.write("<p><a href=\"#\" onclick=\"window.location.reload()\">Reload Brackets</a></p>");
145146
}, 1000);
146147
</script>

0 commit comments

Comments
 (0)