fix(ci): file import paths after refacotr

This commit is contained in:
Barrett Ruth 2025-09-21 14:33:34 -04:00
parent e1b91ffffe
commit a40a53fafa
2 changed files with 4 additions and 4 deletions

View file

@ -28,11 +28,11 @@ cp.nvim follows a simple principle: **solve locally, submit remotely**.
### Basic Usage
1. **Find a problem** on the judge website
2. **Set up locally** with `:CP <platform> <contest> <problem>`
1. **Find a contest or problem** on the judge website
2. **Set up locally** with `:CP <platform> <contest> [<problem>]`
```
:CP codeforces 1848 A
:CP codeforces 1848
```
3. **Code and test** with instant feedback and rich diffs

View file

@ -416,7 +416,7 @@ describe('cp.execute', function()
}
end
local execute_command = require('cp.execute').execute_command
local execute_command = require('cp.runner.execute').execute_command
or function(command, stdin_data, timeout)
local redirected_cmd = vim.deepcopy(command)
if #redirected_cmd > 0 then