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
When running node-deb in bitbucket pipelines, it complains
dpkg-deb: error: control directory has bad permissions 777 (must be >=0755 and <=0775)
Is there an easy way (without changing the dockerfile) to fix this?
The text was updated successfully, but these errors were encountered:
Seems to be calling umask 022 at the top of the step. For some reason Bitbucket Pipelines has a umask value of 000 by default...
umask 022
umask
000
See this issue in Atlassian's Jira.
Would it make sense for node-deb making sure permissions are always set to 0755 before calling dpkg-deb?
node-deb
0755
dpkg-deb
Sorry, something went wrong.
No branches or pull requests
When running node-deb in bitbucket pipelines, it complains
dpkg-deb: error: control directory has bad permissions 777 (must be >=0755 and <=0775)
Is there an easy way (without changing the dockerfile) to fix this?
The text was updated successfully, but these errors were encountered: