Skip to content

Commit

Permalink
fix: minor fix to build script
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Oct 30, 2024
1 parent 03062be commit 8ac14b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bindings/extractous-python/build-inside-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

if [[ $PWD =~ extractous/bindings/extractous-python$ ]]; then
ROOT_DIR=$(realpath "$PWD/../../")
docker build $PWD
docker build -t manylinux_2_28_graalvm $PWD
docker run --rm --mount type=bind,source=$ROOT_DIR,target=/workspace manylinux_2_28_graalvm bash /workspace/bindings/extractous-python/build-wheels.sh

# reset paemissions
Expand Down
4 changes: 2 additions & 2 deletions extractous-core/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ fn gradle_build(
}

let gradlew = if cfg!(target_os = "windows") {
&tika_native_dir.join("gradlew.bat")
tika_native_dir.join("gradlew.bat")
} else {
&tika_native_dir.join("gradlew")
tika_native_dir.join("gradlew")
};

// Launch the gradle build
Expand Down

0 comments on commit 8ac14b8

Please sign in to comment.