Skip to content

Commit

Permalink
chore: update contrib
Browse files Browse the repository at this point in the history
  • Loading branch information
jared-paperspace committed Jan 5, 2023
1 parent 568c7df commit 7e16147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ curl -fsSL https://deno.land/x/install/install.sh | sh

```sh
git clone https://github.com/Paperspace/cli
cd cli
code cli
```

Expand Down
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ if (import.meta.main) {
}

export async function get(url: string) {
console.log("GET", info(url));
console.log(info("GET"), url);
const result = await fetch(url);
console.log("Status", info(`${result.status} ${result.statusText}`));
console.log(info("Status"), `${result.status} ${result.statusText}`);
return await result.json();
}

0 comments on commit 7e16147

Please sign in to comment.