@gearbox-protocol/deploy-tools 5.49.7 → 5.49.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +10 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -429534,7 +429534,10 @@ async function cloneRepo(opts) {
|
|
|
429534
429534
|
}
|
|
429535
429535
|
} else {
|
|
429536
429536
|
const clone2 = ["clone", getGithubUrl(repo), destDir];
|
|
429537
|
-
log.
|
|
429537
|
+
log.debug(`cloning ${repo} at ${commit} to ${destDir}`);
|
|
429538
|
+
await new Promise((r) => {
|
|
429539
|
+
log.flush(r);
|
|
429540
|
+
});
|
|
429538
429541
|
const { stderr, status, error: error46 } = spawnSync("git", clone2, {
|
|
429539
429542
|
cwd: sandboxDir
|
|
429540
429543
|
});
|
|
@@ -453183,7 +453186,11 @@ var MetaRepo = class {
|
|
|
453183
453186
|
* Loads all metafiles found in a repo
|
|
453184
453187
|
*/
|
|
453185
453188
|
async loadFromRepo() {
|
|
453186
|
-
this.#logger.debug(
|
|
453189
|
+
this.#logger.debug({
|
|
453190
|
+
GIT_TOKEN: process.env.GIT_TOKEN?.slice(-4) ?? "--",
|
|
453191
|
+
GITHUB_TOKEN: process.env.GITHUB_TOKEN?.slice(-4) ?? "--",
|
|
453192
|
+
GH_TOKEN: process.env.GH_TOKEN?.slice(-4) ?? "--"
|
|
453193
|
+
}, "loading metadata from github repo");
|
|
453187
453194
|
mkdirSync4(this.#dir, { recursive: true });
|
|
453188
453195
|
await cloneRepo({
|
|
453189
453196
|
repo: `@gearbox-protocol/${META_REPO}`,
|
|
@@ -458765,7 +458772,7 @@ function getRenderer(opts) {
|
|
|
458765
458772
|
var package_default = {
|
|
458766
458773
|
name: "@gearbox-protocol/deploy-tools",
|
|
458767
458774
|
description: "Gearbox deploy tools",
|
|
458768
|
-
version: "5.49.
|
|
458775
|
+
version: "5.49.9",
|
|
458769
458776
|
homepage: "https://gearbox.fi",
|
|
458770
458777
|
keywords: [
|
|
458771
458778
|
"gearbox"
|