Skip to content

Commit 095aab5

Browse files
committed
closes #20: Fixes missing .env.json
Signed-off-by: Eric Wang <[email protected]>
1 parent 5a9160c commit 095aab5

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,3 @@ jspm_packages
3838

3939
tmp/
4040
.DS_Store
41-
.env.json

bin/install

-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,4 @@ npm install
3636
echo "You might need root privilege to install globally ... "
3737
sudo npm install -g .
3838

39-
rm $ENVFILE
40-
4139
echo "leetcode-cli successfully installed."

lib/commands/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var cmd = {
99
};
1010

1111
function prettyLine(k, v) {
12-
log.info(sprintf('%-20s %s', k + ':', v));
12+
log.info(sprintf('%-20s %s', k, v));
1313
}
1414

1515
function getVersion() {

0 commit comments

Comments
 (0)