Skip to content

Commit 0787686

Browse files
committed
fix: correct project variable in echoComposeCommand function
1 parent 7750611 commit 0787686

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/compose.manager/php/compose_util_functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function echoComposeCommand($action, $recreate = false)
7474
$projectName = trim(file_get_contents("$path/name"));
7575
}
7676
$composeCommand[] = "-c" . $action;
77-
$composeCommand[] = "-p" . sanitizeStr($projectName);
77+
$composeCommand[] = "-p" . sanitizeStr($project);
7878

7979
if (isIndirect($path)) {
8080
$indirectPath = getPath($path);

0 commit comments

Comments
 (0)