From f921e568152fd73db9bc387f391e844d58c869ce Mon Sep 17 00:00:00 2001 From: Katie Horne Date: Fri, 9 Jul 2021 14:24:38 -0500 Subject: [PATCH] Expand instructions on creating a configure file --- images/configure.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/images/configure.md b/images/configure.md index 490c9c4de..90f749a77 100644 --- a/images/configure.md +++ b/images/configure.md @@ -20,11 +20,18 @@ contained. The following steps will show you how to create and use a config file. -## Step 1: Create the config file +## Step 1: Create the configure file -Using the text editor of your choice, create a file named `configure` and add -the instructions that you want included. For example, the following file shows -how you can clone a repo at build time: +Using the text editor of your choice, create a file named `configure` and make +it executable: + +```console +touch configure +chmod +x configure +``` + +Next, add the instructions that you want included. For example, the following +file shows how you can clone a repo at build time: ```console #!/bin/bash