Skip to content

Commit

Permalink
fix: use --locked to install estuary (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara authored Sep 23, 2024
1 parent f0ddbf4 commit 0a48f9d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/build-crates-debian-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127470,7 +127470,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/build-crates-standalone-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127454,7 +127454,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/bump-crates-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -81176,7 +81176,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/publish-crates-cargo-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -81065,7 +81065,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
(0,_command__WEBPACK_IMPORTED_MODULE_5__.sh)(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
(0,_command__WEBPACK_IMPORTED_MODULE_5__.sh)(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/publish-crates-debian-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127449,7 +127449,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/publish-crates-eclipse-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127530,7 +127530,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/publish-crates-github-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127530,7 +127530,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion dist/publish-crates-homebrew-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -127434,7 +127434,7 @@ function packagesDebian(path) {
return result;
}
function installBinaryFromGit(name, gitUrl, gitBranch) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}
/**
* Installs a cargo binary by compiling it from source using `cargo install`.
Expand Down
2 changes: 1 addition & 1 deletion src/cargo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export function packagesDebian(path: string): Package[] {
}

export function installBinaryFromGit(name: string, gitUrl: string, gitBranch: string) {
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name}`);
sh(`cargo +stable install --git ${gitUrl} --branch ${gitBranch} ${name} --locked`);
}

/**
Expand Down

0 comments on commit 0a48f9d

Please sign in to comment.