mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:01:24 +00:00
Fix composer missing setting error on install when calling package auto discovery
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
2017-11-09 DariusIII
|
||||
* Fix: Fix composer missing setting error on install when calling package auto discovery
|
||||
* Chg: Update Binaries class to use Group model
|
||||
* Chg: Adjust some renaming
|
||||
2017-11-08 DariusIII
|
||||
|
||||
+1
-1
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
use App\Models\Settings;
|
||||
|
||||
if (defined('NN_INSTALLER') && NN_INSTALLER !== false) {
|
||||
if ((defined('NN_INSTALLER') && NN_INSTALLER !== false) || ! file_exists(NN_ROOT.'_install/install.lock')) {
|
||||
$adapter = 'Php';
|
||||
} else {
|
||||
switch (true) {
|
||||
|
||||
+2
-1
@@ -172,7 +172,8 @@
|
||||
"nntmux\\build\\ComposerScripts::postUpdate"
|
||||
],
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php tmux package:discover"
|
||||
]
|
||||
},
|
||||
"suggest": {
|
||||
|
||||
Reference in New Issue
Block a user