Skip to content

Commit 5b77dac

Browse files
author
Katie Horne
authored
Expand instructions on creating a configure file (coder#476)
1 parent 4168a0e commit 5b77dac

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

images/configure.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,18 @@ contained.
2020

2121
The following steps will show you how to create and use a config file.
2222

23-
## Step 1: Create the config file
23+
## Step 1: Create the configure file
2424

25-
Using the text editor of your choice, create a file named `configure` and add
26-
the instructions that you want included. For example, the following file shows
27-
how you can clone a repo at build time:
25+
Using the text editor of your choice, create a file named `configure` and make
26+
it executable:
27+
28+
```console
29+
touch configure
30+
chmod +x configure
31+
```
32+
33+
Next, add the instructions that you want included. For example, the following
34+
file shows how you can clone a repo at build time:
2835

2936
```console
3037
#!/bin/bash

0 commit comments

Comments
 (0)