Skip to content

Commit

Permalink
Adding update to installer
Browse files Browse the repository at this point in the history
  • Loading branch information
tnylea committed Oct 16, 2024
1 parent bbfec3d commit 98345fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion public/composer/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ function runCmd($cmd) {
require_once __DIR__ . '/windows.php';
} elseif ($os == 'Mac') {
require_once __DIR__ . '/mac.php';
} elseif ($os == 'Linux') {
// We can use the mac installation for linux machines
require_once __DIR__ . '/mac.php';
} else {
print_r($os);
die('OS not supported, Please run composer install and come back to this page.');
}

Expand Down

0 comments on commit 98345fb

Please sign in to comment.