We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 313e0bb commit b8f1d2cCopy full SHA for b8f1d2c
src/Context/FeatureContext.php
@@ -364,6 +364,13 @@ private static function download_sqlite_plugin( $dir ) {
364
$error_message = $zip->getStatusString();
365
throw new RuntimeException( sprintf( 'Failed to open the zip file: %s', $error_message ) );
366
}
367
+
368
+ // For the release downloaded from GitHub, the unzipped folder will contain the version number.
369
+ // We're renaming the folder here for consistency's sake.
370
+ rename(
371
+ $dir . '/sqlite-database-integration-2.1.3/',
372
+ $dir . '/sqlite-database-integration/'
373
+ );
374
375
376
/**
0 commit comments