We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3d7fb commit b509851Copy full SHA for b509851
src/runners/gruntfile.rs
@@ -17,7 +17,7 @@ pub fn is_command_available() -> bool {
17
}
18
19
pub fn list_tasks() -> Result<Vec<Task>, KeeperError> {
20
- let grunt_help_output = capture_command_output("gulp", &["--help"])
+ let grunt_help_output = capture_command_output("grunt", &["--help"])
21
.map(|output| String::from_utf8(output.stdout).unwrap_or("".to_owned()))?;
22
let lines = grunt_help_output.lines().collect::<Vec<&str>>();
23
// extract lines between "Available tasks" and the next empty line
0 commit comments