Skip to content

Commit d92383d

Browse files
authored
chore: fix bash quoting
1 parent e4cf6a8 commit d92383d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Rye
2525
run: |
2626
curl -sSf https://rye.astral.sh/get | bash
27-
echo "$HOME/.rye/shims" >> $GITHUB_PATH
27+
echo "$HOME/.rye/shims" >> "$GITHUB_PATH"
2828
env:
2929
RYE_VERSION: "0.44.0"
3030
RYE_INSTALL_OPTION: "--yes"
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install Rye
5050
run: |
5151
curl -sSf https://rye.astral.sh/get | bash
52-
echo "$HOME/.rye/shims" >> $GITHUB_PATH
52+
echo "$HOME/.rye/shims" >> "$GITHUB_PATH"
5353
env:
5454
RYE_VERSION: "0.44.0"
5555
RYE_INSTALL_OPTION: "--yes"
@@ -86,7 +86,7 @@ jobs:
8686
- name: Install Rye
8787
run: |
8888
curl -sSf https://rye.astral.sh/get | bash
89-
echo "$HOME/.rye/shims" >> $GITHUB_PATH
89+
echo "$HOME/.rye/shims" >> "$GITHUB_PATH"
9090
env:
9191
RYE_VERSION: "0.44.0"
9292
RYE_INSTALL_OPTION: "--yes"
@@ -109,7 +109,7 @@ jobs:
109109
- name: Install Rye
110110
run: |
111111
curl -sSf https://rye.astral.sh/get | bash
112-
echo "$HOME/.rye/shims" >> $GITHUB_PATH
112+
echo "$HOME/.rye/shims" >> "$GITHUB_PATH"
113113
env:
114114
RYE_VERSION: "0.44.0"
115115
RYE_INSTALL_OPTION: "--yes"

0 commit comments

Comments
 (0)