Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix import name case error
repl.js imports "./tinyLisp", but the actual file is called
"tinylisp" (note lowercase L). This breaks on Linux since
the file system is case-sensitive.
  • Loading branch information
mtornwall committed Jun 20, 2013
1 parent 381aab3 commit e944916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repl.js
@@ -1,5 +1,5 @@
var repl = require("repl");
var tinyLisp = require("./tinyLisp").tinyLisp;
var tinyLisp = require("./tinylisp").tinyLisp;

repl.start({
prompt: "> ",
Expand Down

0 comments on commit e944916

Please sign in to comment.