Skip to content

Commit 747d14b

Browse files
authored
Merge pull request #1025 from polyseam/fix-upgrade-18-and-19
fix: `cndi upgrade` fails during unzip
2 parents 2447d5d + 3a5a25e commit 747d14b

File tree

3 files changed

+82
-26
lines changed

3 files changed

+82
-26
lines changed

deno.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "2.19.0",
3-
"deno_version": "1.46.2",
2+
"version": "2.20.0",
3+
"deno_version": "1.46.3",
44
"tasks": {
55
"tar-win": "tar -czvf dist/release-archives/cndi-win.tar.gz -C dist/win/in .",
66
"tar-linux": "tar -czvf dist/release-archives/cndi-linux.tar.gz -C dist/linux/in .",
@@ -39,7 +39,7 @@
3939
"@cndi/cdktf/modules/aws-eks.ts": "jsr:@cndi/cdktf@^0.1.2/modules/aws-eks.ts",
4040
"@cndi/cdktf/modules/aws-iam-assumable-role-with-oidc.ts": "jsr:@cndi/cdktf@^0.1.2/modules/aws-iam-assumable-role-with-oidc.ts",
4141
"@cndi/cdktf/modules/aws-vpc.ts": "jsr:@cndi/cdktf@^0.1.2/modules/aws-vpc.ts",
42-
"@polyseam/cliffy-provider-gh-releases": "jsr:@polyseam/cliffy-provider-gh-releases@^1.0.0-rc.10",
42+
"@polyseam/cliffy-provider-gh-releases": "jsr:@polyseam/[email protected].11",
4343
"@polyseam/silky": "jsr:@polyseam/silky@^1.1.2",
4444
"@std/assert": "jsr:@std/assert@^0.221.0",
4545
"@std/async": "jsr:@std/async@^0.221.0",

deno.lock

+77-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/commands/upgrade.ts

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import { emitExitEvent, getPathToCndiBinary } from "src/utils.ts";
99
const destinationDir = "~/.cndi/bin";
1010

1111
const upgradeCommand = new GithubReleasesUpgradeCommand({
12+
// @ts-ignore - hotfix!
13+
spinner: false,
1214
provider: new GithubReleasesProvider({
1315
repository: "polyseam/cndi",
1416
destinationDir,

0 commit comments

Comments
 (0)