diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-05 19:14:59 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-05 19:14:59 +0300 |
commit | 8cf23354a362dc1792b1195021297333fae3b0df (patch) | |
tree | 328aa3c080bcfb99b199ef5a985ae229700f2979 /_posts/2021-03-10-ubuntu-packaging.md | |
parent | bump jekyll-theme (diff) | |
download | blog-8cf23354a362dc1792b1195021297333fae3b0df.tar.gz blog-8cf23354a362dc1792b1195021297333fae3b0df.zip |
fix typos
Diffstat (limited to '')
-rw-r--r-- | _posts/2021-03-10-ubuntu-packaging.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/_posts/2021-03-10-ubuntu-packaging.md b/_posts/2021-03-10-ubuntu-packaging.md index 10421f0..3c993b3 100644 --- a/_posts/2021-03-10-ubuntu-packaging.md +++ b/_posts/2021-03-10-ubuntu-packaging.md @@ -35,7 +35,7 @@ At best, you'll learn how to build _binary_ packages, not suitable for publishing in a PPA (which only accept _source_ packages and builds the binaries itself). -First, you need to realise that there're source packages and binary packages. +First, you need to realize that there are source packages and binary packages. Binary packages are the .deb files that actually contain the software. A source package is, confusingly, multiple files, and you need to submit them all to Launchpad. @@ -47,7 +47,7 @@ the new versions naturally via the package manager (`apt`). Canonical's Launchpad provides a very handy PPA (Personal Package Archive) service so that anyone can set up a repository. Users could then use `add-apt-repository ppa:...` and get the packages in a -standard and convinient way. +standard and convenient way. Tools ----- @@ -68,7 +68,7 @@ email address) from environment variables. You can put something like export DEBFULLNAME='John Doe' - epxort DEBEMAIL='John.Doe@example.com' + export DEBEMAIL='John.Doe@example.com' in your .bashrc to set them globally. |