bugfixes
authorAJ ONeal <coolaj86@gmail.com>
Sat, 13 Jun 2020 19:43:39 +0000 (13:43 -0600)
committerAJ ONeal <coolaj86@gmail.com>
Sat, 13 Jun 2020 19:43:39 +0000 (13:43 -0600)
node/install.bash

index 6fd685279fb253b376bd55a6084247765305cf93..ab56e308d19a45b2bfc47fed90f53a6e97c0e1f6 100644 (file)
@@ -14,6 +14,8 @@
 #   > Hello, World!
 #   ```
 #
+#   <br/>
+#
 #   ### A Simple Web Server
 #
 #   `server.js`:
@@ -28,6 +30,8 @@
 #   });
 #   ```
 #
+#   <br/>
+#
 #   ```bash
 #   node server.js
 #   ```
@@ -41,6 +45,8 @@
 #   npm install --save express
 #   ```
 #
+#   <br/>
+#
 #   `app.js`:
 #
 #   ```js
@@ -56,6 +62,8 @@
 #   module.exports = app;</code></pre>
 #   ```
 #
+#   <br/>
+#
 #   `server.js`:
 #
 #   ```js
@@ -69,6 +77,8 @@
 #   });
 #   ```
 #
+#   <br/>
+#
 #   ```bash
 #   npm start
 #   ```
@@ -93,7 +103,7 @@ update_node_home() {
     webi_path_add "$common_node_home/bin"
 }
 
-if [ -x "$new_go_home/bin/go" ]; then
+if [ -x "$new_node_home/bin/node" ]; then
   update_node_home
   exit 0
 fi