Skip to content
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

fix typo in 'best text editor on earth' #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions payloads/library/util/package-installer/payload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Description: This payload will install the specified package using opkg.
# Use this to provision your Shark Jack for payloads with dependencies.
# Set PACKAGE_TO_INSTALL to the package you wish to install - for example
# PACKAGE_TO_INSTALL="nano" will install the best text editor on Earth ;)
# PACKAGE_TO_INSTALL="vim" will install the best text editor on Earth ;)
# For a list of available packages, set LIST_PACKAGES to 1 - the results
# will be saved to a log file in the loot directory. Requires Internet.
#
Expand All @@ -16,7 +16,7 @@
# LED SPECIAL (Cyan Blink)... Saving package list to log file
# LED FINISH (Green Fast Blink to Solid)... Package install or list successful

PACKAGE_TO_INSTALL="nano"
PACKAGE_TO_INSTALL="vim"
LIST_PACKAGES=0
LOG_DIR=/root/loot/package-installer

Expand Down