Skip to content

Commit

Permalink
Corrected various typos (#91)
Browse files Browse the repository at this point in the history
* Rename License.md to LICENSE

* Correct typos

* Clean up code layout

Organize layout with extra lines
  • Loading branch information
tjrana authored and XECDesign committed Jul 27, 2017
1 parent fe45b73 commit 3441133
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 7 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -132,11 +132,11 @@ maintenance and allows for more easy customization.
standard console hardware permission groups.

There are a few tools that may not make a whole lot of sense here for
development purposes on a minimal system such as basic python and lua
development purposes on a minimal system such as basic Python and Lua
packages as well as the `build-essential` package. They are lumped right
in with more essential packages presently, though they need not be with
pi-gen. These are understandable for Raspbian's target audience, but if
you were looking for something between truly minimal and Raspbian-lite,
you were looking for something between truly minimal and Raspbian-Lite,
here's where you start trimming.

- **Stage 3** - desktop system. Here's where you get the full desktop system
Expand Down
1 change: 1 addition & 0 deletions build-docker.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

DOCKER="docker"
set +e
$DOCKER ps >/dev/null 2>&1
Expand Down
2 changes: 1 addition & 1 deletion depends
Expand Up @@ -9,4 +9,4 @@ mkdosfs:dosfstools
capsh:libcap2-bin
bsdtar
grep
rsync
rsync
1 change: 1 addition & 0 deletions export-image/00-allow-rerun/files/policy-rc.d
@@ -1,2 +1,3 @@
#!/bin/sh

exit 101
2 changes: 1 addition & 1 deletion export-image/02-network/01-run.sh
@@ -1,3 +1,3 @@
#/bin/bash -e
#!/bin/bash -e

install -m 644 files/resolv.conf ${ROOTFS_DIR}/etc/
1 change: 1 addition & 0 deletions export-image/03-set-partuuid/00-run.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

IMG_FILE="${STAGE_WORK_DIR}/${IMG_DATE}-${IMG_NAME}${IMG_SUFFIX}.img"

IMGID="$(fdisk -l ${IMG_FILE} | sed -n 's/Disk identifier: 0x\([^ ]*\)/\1/p')"
Expand Down
1 change: 1 addition & 0 deletions export-image/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

IMG_FILE="${STAGE_WORK_DIR}/${IMG_DATE}-${IMG_NAME}${IMG_SUFFIX}.img"

unmount_image ${IMG_FILE}
Expand Down
4 changes: 2 additions & 2 deletions scripts/dependencies_check
@@ -1,5 +1,5 @@
# dependencies_check
# $@ Dependnecy files to check
# $@ Dependency files to check
#
# Each dependency is in the form of a tool to test for, optionally followed by
# a : and the name of a package if the package on a Debian-ish system is not
Expand All @@ -21,7 +21,7 @@ dependencies_check()
done

if [[ "$missing" ]]; then
echo "Reqired dependencies not installed"
echo "Required dependencies not installed"
echo
echo "This can be resolved on Debian/Raspbian systems by installing:"
echo "$missing"
Expand Down
1 change: 1 addition & 0 deletions stage0/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

if [ ! -d ${ROOTFS_DIR} ]; then
bootstrap jessie ${ROOTFS_DIR} http://mirrordirector.raspbian.org/raspbian/
fi
1 change: 1 addition & 0 deletions stage1/01-sys-tweaks/files/policy-rc.d
@@ -1,2 +1,3 @@
#!/bin/sh

exit 101
1 change: 1 addition & 0 deletions stage1/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi
1 change: 1 addition & 0 deletions stage2/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi
1 change: 0 additions & 1 deletion stage3/00-install-packages/01-run.sh
Expand Up @@ -6,4 +6,3 @@ update-alternatives --install /usr/bin/x-www-browser \
update-alternatives --install /usr/bin/gnome-www-browser \
gnome-www-browser /usr/bin/chromium-browser 86
EOF

1 change: 1 addition & 0 deletions stage3/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi
1 change: 1 addition & 0 deletions stage4/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi
1 change: 1 addition & 0 deletions stage5/prerun.sh
@@ -1,4 +1,5 @@
#!/bin/bash -e

if [ ! -d ${ROOTFS_DIR} ]; then
copy_previous
fi

0 comments on commit 3441133

Please sign in to comment.