Skip to content

Commit

Permalink
more updates to latest template
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Dec 14, 2023
1 parent 1bd904e commit f3b639c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build/Build.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ component {
* Run the build process: test, build source, docs, checksums
*
* @projectName The project name used for resources and slugs
* @version The version you are building
* @buldID The build identifier
* @branch The branch you are building
* @version The version you are building
* @buldID The build identifier
* @branch The branch you are building
*/
function run(
required projectName,
Expand Down Expand Up @@ -113,9 +113,9 @@ component {
* Build the source
*
* @projectName The project name used for resources and slugs
* @version The version you are building
* @buldID The build identifier
* @branch The branch you are building
* @version The version you are building
* @buldID The build identifier
* @branch The branch you are building
*/
function buildSource(
required projectName,
Expand Down Expand Up @@ -300,9 +300,9 @@ component {
*/
private function ensureExportDir(
required projectName,
version = "1.0.0"
version = "1.0.0"
){
if ( structKeyExists( variables, "exportsDir" ) && directoryExists( variables.exportsDir ) ) {
if ( structKeyExists( variables, "exportsDir" ) && directoryExists( variables.exportsDir ) ){
return;
}
// Prepare exports directory
Expand Down
3 changes: 3 additions & 0 deletions build/release.boxr
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@

# Push all branches back out to github
!git push origin --all

# Check development again
!git checkout -f development

0 comments on commit f3b639c

Please sign in to comment.