Skip to content

Commit 6ff17ea

Browse files
committed
Deploy dev docs - fix sed command (#4221)
# Objective - #3535 introduced deploying docs with an error in sed command ## Solution - fix sed command - make the command cross platform
1 parent e020c57 commit 6ff17ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# - Adds a meta tag that forces Google not to index any page on the site.
2929
- name: Pre-docs-build
3030
run: |
31-
sed -i "s/icon.png/icon-docs-dev.png" src/lib.rs
31+
sed -i.bak "s/icon.png/icon-docs-dev.png/" src/lib.rs
3232
echo "<meta name=\"robots\" content=\"noindex\">" > header.html
3333
3434
- name: Build docs

0 commit comments

Comments
 (0)