summaryrefslogtreecommitdiff
path: root/php/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/functions.php')
-rw-r--r--php/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/functions.php b/php/functions.php
index 61bc13e..83ebead 100644
--- a/php/functions.php
+++ b/php/functions.php
@@ -5,7 +5,7 @@
5function window_app_command(string $app, string $path = ''): string 5function window_app_command(string $app, string $path = ''): string
6{ 6{
7 $command = 'nohup ' . $app; // détache l'appli du script PHP 7 $command = 'nohup ' . $app; // détache l'appli du script PHP
8 if($path != '') 8 if($path !== '')
9 { 9 {
10 $command .= ' ' . $path; 10 $command .= ' ' . $path;
11 } 11 }