We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f046a3a commit 13dcf6bCopy full SHA for 13dcf6b
main.go
@@ -197,6 +197,7 @@ func main() {
197
fatal("To use the default bucket you need to specify an upload directory (-dir)")
198
}
199
200
+ start := time.Now()
201
files, err := GetFilesFromGlobsList(*filesArg)
202
if err != nil {
203
fatal("failed to get files %s", err)
@@ -219,5 +220,10 @@ func main() {
219
220
fatal("failed to write versions json file %s", err)
221
222
- fmt.Printf("\nSuccessfully uploaded static assets and generated %s\n", *outputFilename)
223
+ elapsed := time.Since(start)
224
+ fmt.Printf(
225
+ "\nSuccessfully uploaded static assets and generated %s in %s\n",
226
+ *outputFilename,
227
+ elapsed,
228
+ )
229
0 commit comments