-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
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
Optimization docker file #21
Conversation
Fix error documentation. Optimization docker file.
Hi, the test revealed an issue: Please replace the line in your PR: ADD https://raw.githubusercontent.com/aptly-dev/aptly/v${VER_APTLY}/completion.d/aptly /usr/share/bash-completion/completions/aptly with: RUN curl -o /usr/share/bash-completion/completions/aptly \
https://raw.githubusercontent.com/aptly-dev/aptly/v${VER_APTLY}/completion.d/aptly Let me know once you've updated it. |
Have you heard that Bash completion for Aptly has been added to the Debian package? (source: #20) |
I checked it. Indeed, this line "curl -sLo /usr/share/bash-completion/completions/aptly https://raw.githubusercontent.com/aptly-dev/aptly/v${VER_APTLY}/completion.d/aptly;" is undue. |
I suppose so. How did you test it? I see a terminal in the screenshot, but as far as I understand, it is not a subcommand of Aptly. To test it, you need to connect to the container, type 'aptly', and press the TAB key a few times. This should display the available subcommands of Aptly. |
it's files of directory "/usr/share/bash-completion/completions". And file "aptly" is there.
Yes, i checked it. It's OK. |
Thanks for the PR |
Thank you for PR aproval :) |
Fix error urandom.
Fix error documentation.
Optimization docker file.