diff options
author | 2021-11-07 14:45:06 -0800 | |
---|---|---|
committer | 2021-11-07 14:45:06 -0800 | |
commit | 8b3463e73f09ae304e3b1c0c5f8a6eee0a3ad8da (patch) | |
tree | 7530d27f5a4c27969b711ec564ecb51059d7ecb3 /src | |
parent | 3cb7dbe9218f274ba436d440ef661449073168d5 (diff) | |
download | bun-8b3463e73f09ae304e3b1c0c5f8a6eee0a3ad8da.tar.gz bun-8b3463e73f09ae304e3b1c0c5f8a6eee0a3ad8da.tar.zst bun-8b3463e73f09ae304e3b1c0c5f8a6eee0a3ad8da.zip |
[bun run] Remove unnecessary code
Diffstat (limited to 'src')
-rw-r--r-- | src/cli/run_command.zig | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/cli/run_command.zig b/src/cli/run_command.zig index 3619fba36..5ae842674 100644 --- a/src/cli/run_command.zig +++ b/src/cli/run_command.zig @@ -130,13 +130,6 @@ pub const RunCommand = struct { delimiter = '\''; }, - '\\' => { - entry_i += 1; - try copy_script.appendSlice(script[start..@minimum(entry_i + 1, script.len)]); - delimiter = 0; - continue; - }, - 'n' => { if (delimiter > 0) { const npm_i = entry_i + "pm run ".len; |