There was an error while loading. Please reload this page.
1 parent f7be71b commit d1b4a18Copy full SHA for d1b4a18
1 file changed
tools/generate_cython.sh
@@ -9,7 +9,8 @@ fi
9
10
generate_cython()
11
{
12
- python -m cython -I "$curdir" --cplus "$linetrace_flag" "$curdir"/"$1".pyx -o "$curdir"/"$1".cxx || exit 1
+ # shellcheck disable=SC2086 # linetrace_flag is intentionally unquoted so it expands to no args when empty
13
+ python -m cython -I "$curdir" --cplus $linetrace_flag "$curdir"/"$1".pyx -o "$curdir"/"$1".cxx || exit 1
14
echo "Generated $curdir/$1.cxx"
15
}
16
0 commit comments