Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
BernhardBaumrock committed Jan 11, 2025
2 parents e3132ea + 0205d74 commit 2f3cacb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion App/Commands/DbPull.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function handle()
$this->sshExec($ssh, "cd $dir && $cmd");

$this->write("Copying dump to local...");
$this->exec("scp $ssh:$dir/$folder/tmp.sql {$wire->config->paths->root}/$folder/tmp.sql");
$this->exec("scp $ssh:$dir/$folder/tmp.sql {$wire->config->paths->root}$folder/tmp.sql");

$this->write("Removing remote dump...");
$this->sshExec($ssh, "cd $dir && rm -rf $dir/$folder/tmp.sql");
Expand Down
1 change: 1 addition & 0 deletions App/stubs/module-create/.github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Releases

on:
push:
branches:
Expand Down
3 changes: 2 additions & 1 deletion Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ class Application extends ConsoleApplication

/**
* Path to root folder of the project having a trailing slash
* Use ->rootPath() to access it
* @var string $root
*/
public $root;
private $root;

public function __construct($name = "RockShell", $version = null)
{
Expand Down

0 comments on commit 2f3cacb

Please sign in to comment.