We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b21192 commit cad91eeCopy full SHA for cad91ee
1 file changed
src/Install.php
@@ -19,7 +19,9 @@ class Install
19
public static function install()
20
{
21
static::installByRelation();
22
- mkdir(app_path() . '/queue/stomp', 0777, true);
+ if (!is_dir(app_path() . '/queue/stomp')){
23
+ mkdir(app_path() . '/queue/stomp', 0777, true);
24
+ }
25
}
26
27
/**
@@ -67,4 +69,4 @@ public static function uninstallByRelation()
67
69
68
70
71
-}
72
+}
0 commit comments