Skip to content

Commit

Permalink
Fixed starlark
Browse files Browse the repository at this point in the history
  • Loading branch information
kiranparajuli589 committed Sep 14, 2021
1 parent fbc6369 commit cd29fbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ config = {
"cliEncryption",
],
"extraApps": {
"encryption": 'composer install'
"encryption": "composer install",
},
"extraCommandsBeforeTestRun": [
"php occ encryption:status",
Expand All @@ -213,7 +213,7 @@ config = {
"mkdir data/owncloud-keys",
"chown -R www-data data/owncloud-keys",
"chmod -R 0770 data/owncloud-keys",
]
],
},
"webUI": {
"suites": {
Expand Down
3 changes: 0 additions & 3 deletions tests/acceptance/features/bootstrap/OccContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,6 @@ public function theAdministratorRunsUpgradeRoutinesOnLocalServerUsingTheOccComma
public function theAdministratorRunsEncryptionDecryptAllUsingTheOccCommand() {
\system("./occ maintenance:mode --on");
\system("./occ encryption:decrypt-all -c yes", $status);
var_dump($status);
\system("./occ maintenance:mode --off");
}

Expand Down Expand Up @@ -3094,8 +3093,6 @@ public function removeLocalStorageIfExists() {
$this->deleteLocalStorageFolderUsingTheOccCommand('local_storage3', false);
}

// public function

/**
* This will run before EVERY scenario.
* It will set the properties for this object.
Expand Down

0 comments on commit cd29fbc

Please sign in to comment.