You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->error("Failed to load the {$runtime} runtime to {$destination}, copy of runtime was unsuccessful.");
34
+
}
35
+
36
+
returnstatic::SUCCESS;
37
+
}
38
+
25
39
$this->resolveRuntimes();
26
40
27
41
if (is_null($runtime)) {
@@ -31,25 +45,11 @@ public function handle(): int
31
45
);
32
46
}
33
47
34
-
$destination = $this->option('dest', getcwd());
48
+
35
49
36
50
if ($resolvedRuntime = ($this->runtimes[$runtime] ?? null)) {
37
51
if ((newFile)->copyDirectory($this->devstackStorage()->path($resolvedRuntime), $destination)) {
38
-
$this->info("
39
-
Runtime for <comment>{$runtime}</comment> is now loaded to {$destination}.
40
-
41
-
You can now run the <comment>dev</comment> command. To get started, run <comment>dev up</comment> or <comment>dev up -d</comment> to start the docker containers.
42
-
For the first run, it will build the images first and proceed running the containers. To stop the
43
-
containers, run <comment>dev down</comment>. For more details on the avaialble commands, run <comment>dev help</comment>.
44
-
45
-
To exclude the runtime files to your repository, add the following files below to your .gitignore file:
Runtime for <comment>{$runtime}</comment> is now loaded to {$destination}.
96
+
97
+
You can now run the <comment>dev</comment> command. To get started, run <comment>dev up</comment> or <comment>dev up -d</comment> to start the docker containers.
98
+
For the first run, it will build the images first and proceed running the containers. To stop the
99
+
containers, run <comment>dev down</comment>. For more details on the avaialble commands, run <comment>dev help</comment>.
100
+
101
+
To exclude the runtime files to your repository, add the following files below to your .gitignore file:
0 commit comments