Skip to content

Commit

Permalink
Check for empty public_key
Browse files Browse the repository at this point in the history
  • Loading branch information
dagio committed May 1, 2016
1 parent 2d87aac commit e93ae83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
isset($_SERVER['appetize_token']) ? $_SERVER['appetize_token'] : null,
];

if (isset($_SERVER['public_key'])) {
if (isset($_SERVER['public_key']) && $_SERVER['public_key']) {
$inputArg[] = '--public-key='.$_SERVER['public_key'];
}

Expand Down

0 comments on commit e93ae83

Please sign in to comment.