Skip to content

Commit

Permalink
ci: add full to gradlew command
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Jun 29, 2024
1 parent 22137cd commit 116266c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extract-core/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ fn gradle_build(target_os: &str, tika_native_dir: &Path,
out_dir: &PathBuf, _dist_dir: &Path
) {
let gradlew = match target_os {
"windows" => "gradlew.bat",
_ => "./gradlew"
"windows" => tika_native_dir.join("gradlew.bat"),
_ => tika_native_dir.join("gradlew")
};

Command::new(gradlew)
Expand Down

0 comments on commit 116266c

Please sign in to comment.