Skip to content

Commit 618c444

Browse files
committed
fix: Type of rustic-cargo-nextest-exec-command
This commit enhances the `rustic-cargo-nextest-exec-command` customization option by changing its type from a single string to a list of strings.
1 parent 194f15c commit 618c444

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
/config.mk
66
*autoloads.el
77
test/test-project/target
8-
test/test-project-single-crate/target
8+
test/test-project-single-crate/target
9+
.env

rustic-cargo.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
(defcustom rustic-cargo-nextest-exec-command (list "nextest" "run")
3939
"Execute command to run nextest."
40-
:type 'string
40+
:type '(repeat string)
4141
:group 'rustic-cargo)
4242

4343
(defcustom rustic-cargo-run-exec-command "run"

0 commit comments

Comments
 (0)