Skip to content

Commit 95426d3

Browse files
authored
Merge branch 'main' into main
2 parents 2928d90 + 8741b47 commit 95426d3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,15 @@ To do this:
7575
To quickly test if a workflow file format is valid, you can also build workflows locally to validate the schema is correct:
7676
```
7777
# Download the rust toolchain, if not already installed.
78-
brew install rust-up
78+
brew install rustup
7979
rustup-init
8080
8181
# Ensure the workflows can successfully be converted into Rust.
8282
cargo build
8383
```
8484

8585

86-
### What Makes a Useful Workflow?
86+
### What Makes a Useful workflow?
8787
A good workflow is one that includes a command with many flags or arguments or one that is hard to remember.
8888

8989
Additionally, a workflow _must_ include:

specs/file_manipulation/recursively_find_and_replace_within_a_directory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Recursively find and replace within a directory
3-
command: "grep -rl {{old_text}} {{file_path}} | xargs sed -i 's/{{old_text}}/{{new_text}}/g'"
3+
command: "grep -rl {{old_text}} {{file_path}} | xargs sed -i '' 's/{{old_text}}/{{new_text}}/g'"
44
tags:
55
- file manipulation
66
- sed

0 commit comments

Comments
 (0)