Skip to content

Commit

Permalink
fork: you54f libpact_ffi-v0.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Feb 27, 2024
1 parent 7935f82 commit f1a0ff0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update_ffi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
PACT_FFI_VERSION:
description: Tag from https://github.com/you54f/pact-reference/releases for libpact_ffi
required: true
default: 0.4.5
default: 0.4.16
type: string

jobs:
Expand Down
4 changes: 2 additions & 2 deletions deno/downloadFfi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function downloadFile(src: string, dest: string) {
await resp.body.pipeTo(file.writable);
}

export const detectFfiDownloadForPlatform = (ffiVersion = "v0.4.5") => {
export const detectFfiDownloadForPlatform = (ffiVersion = "v0.4.16") => {
const platform = Deno.build.os + "-" + Deno.build.arch;
console.log(platform);
let filename;
Expand Down Expand Up @@ -56,7 +56,7 @@ export const detectFfiDownloadForPlatform = (ffiVersion = "v0.4.5") => {
return { ffiLibDownloadLocation, ffiHeaderDownloadLocation };
};

export const downloadFfiForPlatform = async (ffiVersion = "v0.4.5") => {
export const downloadFfiForPlatform = async (ffiVersion = "v0.4.16") => {
const locs = detectFfiDownloadForPlatform(ffiVersion);
const libraryFilename =
Deno.build.os === "darwin"
Expand Down

0 comments on commit f1a0ff0

Please sign in to comment.