Dan Anglin
25325e2856
Changes: - Most of the go code is now located in internal packages. - Code refactored and simplified in some cases. - Removed the 'download' mage target and integrated the download code into the internal 'prepare' package. - Moved all mage target code to magefile.go. - Added missing descriptions to the mage targets. - Updated go.mod. Fixed: - Created a custom function to validate the checksum of the downloaded Woodpecker tar file. - Specified the environment when running 'clean'.
7 lines
144 B
Go
7 lines
144 B
Go
package internal
|
|
|
|
const (
|
|
RootBuildDir string = "./build"
|
|
RootTemplatesDir string = "./templates"
|
|
RootAssetsDir string = "./assets"
|
|
)
|