Skip to content

Commit b509851

Browse files
committed
chore: polishing
1 parent be3d7fb commit b509851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runners/gruntfile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub fn is_command_available() -> bool {
1717
}
1818

1919
pub fn list_tasks() -> Result<Vec<Task>, KeeperError> {
20-
let grunt_help_output = capture_command_output("gulp", &["--help"])
20+
let grunt_help_output = capture_command_output("grunt", &["--help"])
2121
.map(|output| String::from_utf8(output.stdout).unwrap_or("".to_owned()))?;
2222
let lines = grunt_help_output.lines().collect::<Vec<&str>>();
2323
// extract lines between "Available tasks" and the next empty line

0 commit comments

Comments
 (0)