Skip to content

Commit

Permalink
Fix copy paste fail
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianfeldmann committed Mar 22, 2024
1 parent 9f4873e commit cc3087d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backup/Crypter/Gpg.php
Original file line number Diff line number Diff line change
Expand Up @@ -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', '');
}
Expand Down

0 comments on commit cc3087d

Please sign in to comment.