diff --git a/src/Backup/Crypter/Gpg.php b/src/Backup/Crypter/Gpg.php index 9318e00d..0deb7392 100644 --- a/src/Backup/Crypter/Gpg.php +++ b/src/Backup/Crypter/Gpg.php @@ -53,7 +53,7 @@ public function setup(array $options = []) throw new Exception('gpg expects \'user\''); } - $this->pathToGpg = Util\Arr::getValue($options, 'pathToOpenSSL', ''); + $this->pathToGpg = Util\Arr::getValue($options, 'pathToGPG', ''); $this->keepUncrypted = Util\Str::toBoolean(Util\Arr::getValue($options, 'keepUncrypted', ''), false); $this->user = Util\Arr::getValue($options, 'user', ''); }