Skip to content

Commit

Permalink
standard + flow fixes for publish command
Browse files Browse the repository at this point in the history
  • Loading branch information
yusefnapora committed Jan 12, 2017
1 parent 2178481 commit cd5b41a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/client/cli/commands/publish.js
Expand Up @@ -17,6 +17,7 @@ type HandlerOptions = {
client: RestClient,
jqFilter: string,
idFilter: string,
prefix: string,
filename?: string,
batchSize: number,
compound?: number,
Expand Down Expand Up @@ -225,7 +226,7 @@ function publishStream (opts: {

wki = wki.toString()

wkiWithPrefix = [ prefix, wki ].join(':')
const wkiWithPrefix = [ prefix, wki ].join(':')

const refs = [ wkiWithPrefix ]
const tags = [] // TODO: support extracting tags
Expand Down

0 comments on commit cd5b41a

Please sign in to comment.