From 1b39a8222b8e2c630e02ff4ded53441fcbce135f Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Thu, 1 Oct 2015 16:42:14 -0500 Subject: [PATCH] Read inputs in on the same line and add some spacing --- src/utils.ipxe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.ipxe b/src/utils.ipxe index bee4aefc..e9a08940 100644 --- a/src/utils.ipxe +++ b/src/utils.ipxe @@ -43,8 +43,8 @@ echo This will chainload into a testing branch of netboot.xyz. You'll need to e echo your Github User and the first part of the commit hash of the commit you want echo to test. This assumes you are testing from a netboot.xyz repo. echo -echo Specify Github User Name: && read github_user -echo Specify shortened commit hash of netboot.xyz to be tested ( i.e. 30b7ca ): && read github_hash +echo -n Specify Github User Name: ${} && read github_user +echo -n Specify shortened commit hash of netboot.xyz to be tested ( i.e. 30b7ca ): ${} && read github_hash echo echo Attempting to chainload: chain --autofree https://raw.githubusercontent.com/${github_user}/netboot.xyz/${github_hash}/src/menu.ipxe || goto error