Skip to content

Commit

Permalink
Fix order
Browse files Browse the repository at this point in the history
  • Loading branch information
paragonie-security committed Jan 17, 2022
1 parent af07da9 commit 177b46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/make-tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
$scripts = [];
foreach (\glob($root . '/sql/' . $db->getDriver() . '/*.sql') as $file) {
if (!empty($desiredFile)) {
if (strpos($desiredFile, $file) === false) {
if (strpos($file, $desiredFile) === false) {
continue;
}
}
Expand Down

0 comments on commit 177b46f

Please sign in to comment.