make redist issues #45
Labels
No labels
Bug
Cannot Resolve
Completed
Enhancement
Important
Question
Resolved
Security Issue
Suggestion
Todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Nosial/ncc#45
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Running make redist causes an error, looks like a shell interference.
@netkas Could you please investigate?
assigned to @netkas
Logs from latest job
If i’m not mistaken, it looks like it’s trying to run the arguments as commands as well?Those commands are a part of the Makefile, no?
php
isn't supposed to run in this case, it's supposed to bephpab
, notice the--output
argument including the other arguments provided to php is not applicable to the standard php cli, however it is applicable tophpab
Double check your code and verify it that was that issue
Or perhaps, another possible issue is that
phpab
was not installed correctly because in https://git.n64.cc/nosial/ncc/-/blob/dev/Makefile#L2 is where the variablePHPAB
gets declared by runningwhich phpab
and setting the result of that as it's valueIf this command fails to run, the variable would be empty. Hence why only
php
is running and notphpab
, because from what i see in https://git.n64.cc/nosial/ncc/-/blob/dev/Makefile#L23php
is supposed to run but also followed byphpab
So try also verifying if
phpab
is getting installed correctly.mentioned in commit
02a5e24b86
Issue (hopefully) fixed, closing.