Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9846d32

Browse files
SRWieZgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 19fa019 commit 9846d32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Electron/Commands/Bifrost/ClearBundleCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function handle(): int
2020
intro('Clearing downloaded bundle...');
2121

2222
$bundlePath = base_path('build/__nativephp_app_bundle');
23-
$signaturePath = $bundlePath . '.asc';
23+
$signaturePath = $bundlePath.'.asc';
2424

2525
$bundleExists = file_exists($bundlePath);
2626
$signatureExists = file_exists($signaturePath);

src/Electron/Commands/Bifrost/DownloadBundleCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function handle(): int
6767
// Download GPG signature if available
6868
$signaturePath = null;
6969
if (isset($buildData['data']['signature_url'])) {
70-
$signaturePath = $bundlePath . '.asc';
70+
$signaturePath = $bundlePath.'.asc';
7171
if (! $this->downloadSignature($buildData['data']['signature_url'], $signaturePath)) {
7272
$this->warn('Failed to download GPG signature file.');
7373
}

0 commit comments

Comments
 (0)