@@ -75,7 +75,7 @@ class HAXCMSSite
75
75
directory ,
76
76
siteBasePath ,
77
77
name ,
78
- gitDetails ,
78
+ gitDetails = null ,
79
79
domain = null ,
80
80
build = null
81
81
) {
@@ -1565,6 +1565,7 @@ class HAXCMSClass {
1565
1565
constructor ( ) {
1566
1566
this . developerMode = false ;
1567
1567
this . developerModeAdminOnly = false ;
1568
+ this . cliWritePath = null ;
1568
1569
this . cdn = './' ;
1569
1570
this . sessionJwt = null ;
1570
1571
this . protocol = 'http' ;
@@ -1611,7 +1612,8 @@ class HAXCMSClass {
1611
1612
this . boilerplatePath = __dirname + '/../boilerplate/' ;
1612
1613
// these are relative to root which is cwd
1613
1614
this . sitesDirectory = '_sites' ;
1614
- if ( ! systemStructureContext ( ) ) {
1615
+ // CLI's do not operate in multisite mode default folder creator
1616
+ if ( ! systemStructureContext ( ) && ! this . isCLI ( ) ) {
1615
1617
this . operatingContext = 'multisite' ;
1616
1618
// verify exists
1617
1619
if ( ! fs . existsSync ( path . join ( HAXCMS_ROOT , this . sitesDirectory ) ) ) {
@@ -1718,7 +1720,7 @@ class HAXCMSClass {
1718
1720
/**
1719
1721
* Load a site off the file system with option to create
1720
1722
*/
1721
- async loadSite ( name , create = false , domain = null )
1723
+ async loadSite ( name , create = false , domain = null , build = null )
1722
1724
{
1723
1725
let tmpname = decodeURIComponent ( name ) ;
1724
1726
tmpname = this . cleanTitle ( tmpname , false ) ;
@@ -1737,8 +1739,8 @@ class HAXCMSClass {
1737
1739
return site ;
1738
1740
}
1739
1741
else if ( create ) {
1740
- // attempt to create site
1741
- return await this . createSite ( name , domain ) ;
1742
+ // attempt to create site
1743
+ return await this . createSite ( name , domain , null , build ) ;
1742
1744
}
1743
1745
return false ;
1744
1746
}
@@ -1763,10 +1765,14 @@ class HAXCMSClass {
1763
1765
git [ 'url' ] += '/' + name + '.git' ;
1764
1766
}
1765
1767
}
1766
-
1768
+ let writePath = HAXCMS_ROOT + this . sitesDirectory ;
1769
+ // allow CLI operations to overwrite write location
1770
+ if ( HAXCMS . cliWritePath && this . isCLI ( ) ) {
1771
+ writePath = HAXCMS . cliWritePath ;
1772
+ }
1767
1773
if (
1768
1774
await site . newSite (
1769
- HAXCMS_ROOT + this . sitesDirectory ,
1775
+ writePath ,
1770
1776
this . basePath + this . sitesDirectory + '/' ,
1771
1777
name ,
1772
1778
git ,
0 commit comments