Skip to content

Commit

Permalink
Merge pull request #2568 from chef/RajeshPaul38/removed-dollar-sign-f…
Browse files Browse the repository at this point in the history
…rom-commands

Removed unnecessary prompt '$'
  • Loading branch information
tas50 authored Feb 4, 2022
2 parents b3b0bfc + 98741c7 commit 7558f2f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions omnibus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ You must have a sane Ruby 1.9+ environment with Bundler installed. Ensure all
the required gems are installed:

```shell
$ bundle install --binstubs
bundle install --binstubs
```

Usage
Expand All @@ -25,7 +25,7 @@ Usage
You create a platform-specific package using the `build project` command:

```shell
$ bin/omnibus build supermarket
bin/omnibus build supermarket
```

The platform/architecture type of the package created will match the platform
Expand All @@ -39,15 +39,15 @@ You can clean up all temporary files generated during the build process with
the `clean` command:

```shell
$ bin/omnibus clean supermarket
bin/omnibus clean supermarket
```

Adding the `--purge` purge option removes __ALL__ files generated during the
build including the project install directory (`/opt/supermarket`) and
the package cache directory (`/var/cache/omnibus/pkg`):

```shell
$ bin/omnibus clean supermarket --purge
bin/omnibus clean supermarket --purge
```

### Publish
Expand All @@ -57,7 +57,7 @@ as Amazon S3. You must set the proper credentials in your `omnibus.rb` config
file or specify them via the command line.

```shell
$ bin/omnibus publish path/to/*.deb --backend s3
bin/omnibus publish path/to/*.deb --backend s3
```

### Help
Expand All @@ -66,7 +66,7 @@ Full help for the Omnibus command line interface can be accessed with the
`help` command:

```shell
$ bin/omnibus help
bin/omnibus help
```

Kitchen-based Build Environment
Expand All @@ -91,14 +91,14 @@ liking, you can bring up an individual build environment using the `kitchen`
command.

```shell
$ kitchen converge ubuntu-1604
kitchen converge ubuntu-1604
```

Then login to the instance and build the project as described in the Usage
section:

```shell
$ kitchen login ubuntu-1604
kitchen login ubuntu-1604
[vagrant@ubuntu...] $ cd supermarket
[vagrant@ubuntu...] $ bundle install
[vagrant@ubuntu...] $ ...
Expand Down

0 comments on commit 7558f2f

Please sign in to comment.