Skip to content

Commit

Permalink
Fixed self-update command
Browse files Browse the repository at this point in the history
  • Loading branch information
jonerickson committed Aug 14, 2023
1 parent 36a298e commit a5afe11
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/.vagrant
.phpunit.result.cache
/database/database.sqlite
*.log
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "laravel-zero/laravel-zero",
"description": "The Laravel Zero Framework.",
"keywords": ["framework", "laravel", "laravel zero", "console", "cli"],
"homepage": "https://laravel-zero.com",
"name": "deschutesdesigngroupllc/perscom-cli",
"description": "TA command-line interface tool to interact with your PERSCOM data.",
"keywords": ["perscom", "console", "cli"],
"homepage": "https://perscom.io",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/laravel-zero/laravel-zero/issues",
"source": "https://github.com/laravel-zero/laravel-zero"
"issues": "https://github.com/DeschutesDesignGroupLLC/perscom-cli/issues",
"source": "https://github.com/DeschutesDesignGroupLLC/perscom-cli"
},
"authors": [
{
"name": "Nuno Maduro",
"email": "enunomaduro@gmail.com"
"name": "Jon Erickson",
"email": "jon@deschutesdesigngroup.com"
}
],
"require": {
Expand Down
4 changes: 3 additions & 1 deletion config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
'disks' => [
'local' => [
'driver' => 'local',
'root' => $_SERVER['HOME'].'/.perscom/app',
'root' => Phar::running()
? $_SERVER['HOME'].'/.perscom/app'
: storage_path('app'),
],
],
];

0 comments on commit a5afe11

Please sign in to comment.