Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -2245,6 +2245,9 @@ def installExtraApps(phpVersion, extraApps, pathOfServerUnderTest = '/drone/src'
commandArray = []
for app, command in extraApps.items():
commandArray.append('ls %s/apps/%s || git clone https://github.com/owncloud/%s.git %s/apps/%s' % (pathOfServerUnderTest, app, app, pathOfServerUnderTest, app))
if (app == 'files_primary_s3'):
commandArray.append('cd /drone/src/apps/%s' % app)
commandArray.append('git checkout update-guzzle-6')
if (command != ''):
commandArray.append('cd %s/apps/%s' % (pathOfServerUnderTest, app))
commandArray.append(command)
Expand Down
2 changes: 1 addition & 1 deletion apps/files_external/3rdparty/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"icewind/smb": "3.4.1",
"icewind/streams": "0.7.4",
"google/apiclient": "2.9.1",
"guzzlehttp/guzzle": "^5.3"
"guzzlehttp/guzzle": "^6.5"
},
"autoload": {
"files": ["../lib/config.php"]
Expand Down
Loading