Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.91
v0.0.92
3 changes: 2 additions & 1 deletion install.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

// Usage: php install.php <repository> [<token>]
if ($argc < 2) {
die("Usage: php install.php <repository> [<token>]\n");
Expand All @@ -19,7 +20,7 @@
// Configure PHP Settings - increase execution time and memory limit
ini_set('max_execution_time', '600'); // 10 minutes
set_time_limit(600); // 10 minutes
ini_set('memory_limit', '1024M');
ini_set('memory_limit', '2G');


// Check if required commands are available
Expand Down