We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the command and I think the build although haven't tested If you have a space in the option it will fail to run.
CompileDaemon --build="go build -o program main.go " --command="./program --option=\"1 2\""
Seems to split on spaces which is not always correct.
The text was updated successfully, but these errors were encountered:
That's true. I don't think CompileDaemon will ever cover this. Write your command to a shell script instead and invoke that instead. For example:
command.sh:
#!/bin/sh ./program --option="1 2"
run:
CompileDaemon --command ./command.sh
Sorry, something went wrong.
No branches or pull requests
In the command and I think the build although haven't tested
If you have a space in the option it will fail to run.
Seems to split on spaces which is not always correct.
The text was updated successfully, but these errors were encountered: