Skip to content

Commit

Permalink
Merge pull request #41 from sjdaniels/hotfix/remove-test
Browse files Browse the repository at this point in the history
Remove test-mongodb.cfm "application"
  • Loading branch information
sjdaniels authored Nov 7, 2023
2 parents b5a55db + 28fb1f1 commit cb5ce96
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 106 deletions.
7 changes: 0 additions & 7 deletions build-compile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@
<replace haystack="${content2}" needle="{bundle-version}" repl="${bundleversion}${build.number}" property="content3"/>
<echo message="${content3}" file="${dist}/extension/flds/mongodb.fld"/>

<!-- copy the applications necessary -->
<copy todir="${dist}/extension/applications">
<fileset dir="${build}/applications">
<include name="**/*.*"/>
</fileset>
</copy>

<!-- copy the functions necessary -->
<copy todir="${dist}/extension/functions">
<fileset dir="${build}/functions">
Expand Down
6 changes: 3 additions & 3 deletions build.number
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Fri May 12 10:33:13 EDT 2023
build.number=4
#Build Number for ANT. Do not edit!
#Tue Nov 07 15:41:03 EST 2023
build.number=6
76 changes: 0 additions & 76 deletions build/applications/test-mongodb.cfm

This file was deleted.

20 changes: 0 additions & 20 deletions build/classic/Install.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -68,26 +68,6 @@
</cfloop>
</cfif>

<!--- applications --->
<cfset templates=[]>
<cfset local.dir=path&"applications/">
<cfset local.trg=expandPath('{web-root-directory}')>
<cfif directoryExists(dir)>
<cfdirectory action="list" directory="#dir#" name="local.qry" recurse="yes">
<cfloop query="#qry#">
<cfset local.fullpath="#qry.directory#/#qry.name#">
<cfif fileExists(fullpath) and qry.name NEQ ".DS_Store">

<cfset template=qry.name>
<cfset arrayAppend(templates,template)>

<cffile action="copy"
source="#fullpath#"
destination="#trg#/#template#">
</cfif>
</cfloop>
</cfif>

<!--- functions --->
<cfset local.dir=path&"functions/">
<cfset local.trg=expandPath('{lucee-server-directory}/library/function')>
Expand Down

0 comments on commit cb5ce96

Please sign in to comment.