diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-19 12:18:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 12:18:05 -0400 |
commit | fa3c35301aa44975776b96c85f200de8eb500c22 (patch) | |
tree | 76f8d5e6f42e1c306a40efd0b80dce18528952f4 /tools/format.py | |
parent | c7d81fa9ff495986675c05e52e13acc9ffc85372 (diff) |
Rename //src/ to //cli/ (#1962)
To better distinguish the deno_core crate from the executable deno,
which will now be called "the cli" internally.
Diffstat (limited to 'tools/format.py')
-rwxr-xr-x | tools/format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/format.py b/tools/format.py index 74323708a..bc6a3b532 100755 --- a/tools/format.py +++ b/tools/format.py @@ -45,4 +45,4 @@ print "rustfmt" qrun([ "third_party/rustfmt/" + platform() + "/rustfmt", "--config-path", rustfmt_config, "build.rs" -] + find_exts(["src", "core"], [".rs"])) +] + find_exts(["cli", "core"], [".rs"])) |