Skip to content

chore: expand instructions on creating a configure file #476

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

Merged
merged 1 commit into from
Jul 10, 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
15 changes: 11 additions & 4 deletions images/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down