This commit is contained in:
maddalax 2024-09-23 15:48:51 -05:00
parent 4531d56344
commit 08a6bdad27

View file

@ -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))
} }