diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-04-19 08:15:51 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-04-21 14:26:31 +0200 |
commit | cccbd028a6974ed8d26f23d266a5ee5f545bf0e6 (patch) | |
tree | 40fca643eeced30b83a392ca72628fce4f02b3c4 /.drone.yml | |
parent | 42fbf809fe25d8812a39d41f8d1352c34344c76e (diff) | |
download | nextcloud-server-cccbd028a6974ed8d26f23d266a5ee5f545bf0e6.tar.gz nextcloud-server-cccbd028a6974ed8d26f23d266a5ee5f545bf0e6.zip |
Add safety parameter
As the script modifies the Git repository a safety parameter was added
to prevent running it by mistake and messing with the local copy of the
repository.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index b768fd3f1ea..60194f482c4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -481,14 +481,14 @@ pipeline: acceptance-access-levels: image: nextcloudci/php7.0:php7.0-7 commands: - - build/acceptance/run-local.sh features/access-levels.feature + - build/acceptance/run-local.sh allow-git-repository-modifications features/access-levels.feature when: matrix: TESTS-ACCEPTANCE: access-levels acceptance-login: image: nextcloudci/php7.0:php7.0-7 commands: - - build/acceptance/run-local.sh features/login.feature + - build/acceptance/run-local.sh allow-git-repository-modifications features/login.feature when: matrix: TESTS-ACCEPTANCE: login |