Skip to content

Commit

Permalink
Making a fix for the update manager not working with some versions of…
Browse files Browse the repository at this point in the history
… Railo / java XML libraries - just removing a little needless XPath specificness that doesn't seem to work everywhere
  • Loading branch information
DominicWatson committed Sep 12, 2014
1 parent a5f5549 commit 047bd03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/services/updateManager/UpdateManagerService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ component output=false autodoc=true displayName="Update manager service" {
}

var branchPath = _getRemoteBranchPath();
var xPath = "/:ListBucketResult/:Contents/:Key[starts-with(.,'#branchPath#')]/text()";
var xPath = "/:ListBucketResult/:Contents/:Key[starts-with(.,'#branchPath#')]";
var versionFiles = XmlSearch( s3Listing, xPath );
var jsonAndZipMatches = {};
var versions = [];
Expand Down

0 comments on commit 047bd03

Please sign in to comment.