Skip to content

Commit

Permalink
Change delay on windows to 1s
Browse files Browse the repository at this point in the history
  • Loading branch information
pgaskin committed Aug 19, 2017
1 parent 46add9f commit 7ac7e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kepubify.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func convert(c *cli.Context) error {
fmt.Printf("Successfully converted \"%s\" to a kepub.\nYou can find the converted file at \"%s\"\n", infile, outfile)

if runtime.GOOS == "windows" {
time.Sleep(5000 * time.Second)
time.Sleep(1 * time.Second)
}

return nil
Expand Down

0 comments on commit 7ac7e17

Please sign in to comment.