Skip to content
Snippets Groups Projects

abuild, abuild-keygen: drop echo -n as well

Merged Max Rees requested to merge bashisms into master
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -33,7 +33,7 @@ get_privkey_file() {
privkey="$ABUILD_USERDIR/$default_name.rsa"
[ -n "$non_interactive" ] && return 0
msg "Generating public/private rsa key pair for abuild"
echo -n "Enter file in which to save the key [$privkey]: "
printf '%s' "Enter file in which to save the key [$privkey]: "
read line
if [ -n "$line" ]; then
Loading