8000 Fix quotes · python/cpython@317ba79 · GitHub
[go: up one dir, main page]

Skip to content

Commit 317ba79

Browse files
committed
Fix quotes
1 parent e559898 commit 317ba79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/jit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
echo "::group::Configure Python (Host)"
105105
export HOST=${{ matrix.architecture }}-linux-gnu
106106
sudo apt install --yes gcc-$HOST pkg-config-$HOST qemu-user
107-
export CC=${{ matrix.compiler == 'clang' && "clang --target=$HOST" || "$HOST-gcc" }}
107+
export CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}"
108108
export CPP="$CC --preprocess"
109109
export HOSTRUNNER=qemu-${{ matrix.architecture }}
110110
export PKG_CONFIG=$HOST-pkg-config

0 commit comments

Comments
 (0)
0