Skip to content
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

disable 'stable mode' in Gentoo Prefix bootstrap script, since it's only used for x86_64 #1

Merged
merged 1 commit into from
Nov 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bootstrap-prefix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2751,7 +2751,7 @@ I can limit your Prefix to use only packages keyworded for stable amd64
by default. Of course, you can still enable testing ~amd64 for
the packages you want, when the need arises.
EOF
[[ ${TODO} == 'noninteractive' ]] && ans=yes ||
[[ ${TODO} == 'noninteractive' ]] && ans=no ||
read -p " Do you want to use stable Prefix? [Yn] " ans
case "${ans}" in
[Yy][Ee][Ss]|[Yy]|"")
Expand Down