log err
This commit is contained in:
parent
4531d56344
commit
08a6bdad27
1 changed files with 5 additions and 1 deletions
|
|
@ -90,7 +90,11 @@ func downloadTailwindCli() {
|
||||||
}, process.ExitOnError)
|
}, process.ExitOnError)
|
||||||
}
|
}
|
||||||
|
|
||||||
dirutil.MoveFile(fileName, "./__htmgo/tailwind")
|
err := dirutil.MoveFile(fileName, "./__htmgo/tailwind")
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("Error moving file: %s\n", err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
slog.Debug("Successfully downloaded Tailwind CLI", slog.String("url", url))
|
slog.Debug("Successfully downloaded Tailwind CLI", slog.String("url", url))
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue