Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
Update version to 0.0.4 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
itowlson authored Dec 4, 2018
1 parent 22f8d95 commit 5ce2647
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "duffle-vscode",
"displayName": "Duffle",
"description": "VS Code extension for Duffle, the CNAB installer",
"version": "0.0.2",
"version": "0.0.4",
"preview": true,
"publisher": "ms-kubernetes-tools",
"engines": {
Expand Down Expand Up @@ -382,6 +382,6 @@
},
"repository": {
"type": "git",
"url": "https://github.com/deis/duffle-vscode"
"url": "https://github.com/deislabs/duffle-vscode"
}
}
6 changes: 3 additions & 3 deletions src/duffle/duffle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function listClaims(sh: shell.Shell): Promise<Errorable<string[]>> {
.map((l) => l.trim())
.filter((l) => l.length > 0);
}
return invokeObj(sh, 'claims list', '', {}, parse);
return invokeObj(sh, 'claims list', '--short', {}, parse);
}

export async function listRepos(sh: shell.Shell): Promise<Errorable<string[]>> {
Expand All @@ -60,7 +60,7 @@ export function listCredentialSets(sh: shell.Shell): Promise<Errorable<string[]>
.map((l) => l.trim())
.filter((l) => l.length > 0);
}
return invokeObj(sh, 'credentials list', '', {}, parse);
return invokeObj(sh, 'credentials list', '--short', {}, parse);
}

export function search(sh: shell.Shell): Promise<Errorable<RepoBundle[]>> {
Expand All @@ -80,7 +80,7 @@ export function bundles(sh: shell.Shell): Promise<Errorable<LocalBundle[]>> {
.filter((l) => l.length > 0);
return fromHeaderedTable<LocalBundle>(lines);
}
return invokeObj(sh, 'bundle list', '--long', {}, parse);
return invokeObj(sh, 'bundle list', '', {}, parse);
}

export async function upgrade(sh: shell.Shell, bundleName: string, credentialSet: string | undefined): Promise<Errorable<null>> {
Expand Down

0 comments on commit 5ce2647

Please sign in to comment.