Skip to content

Commit

Permalink
chore: remove log from cli
Browse files Browse the repository at this point in the history
  • Loading branch information
frammaa committed May 6, 2022
1 parent bf68167 commit f84c482
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/cli/src/deploy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,10 @@ async function compareRemoteFns(
): Promise<'update' | 'new' | 'unchanged' | 'err'> {
const version = hash(code).toString(16)
const id = await client.id('function', name + envid)
console.log('>>>1')
const remote = await client.get({
$id: id,
current: true,
})
console.log('>>>2')

if (remote.$isNull) return 'new'
if (remote.current === version) return 'unchanged'
Expand Down

0 comments on commit f84c482

Please sign in to comment.