Skip to content

Commit 304b282

Browse files
committed
fix script path
1 parent a972f12 commit 304b282

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/releasebuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ jobs:
182182
# The cythonized files allow installation from the sdist without cython
183183
- name: Generate cython
184184
run: |
185-
chmod +x ./jarowinkler/src/generate.sh
186-
./jarowinkler/src/generate.sh
185+
chmod +x ./src/jarowinkler/generate.sh
186+
./src/jarowinkler/generate.sh
187187
188188
- name: Build sdist
189189
run: |

src/jarowinkler/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ generate_cython()
77
echo "Generated $curdir/$1.cxx"
88
}
99

10-
generate_cython _initialize
10+
generate_cython _initialize_cpp

0 commit comments

Comments
 (0)