Skip to content

Commit 429e105

Browse files
authored
Merge pull request #613 from Wysselbie/fix-typos
2 parents 15e550f + 19321e7 commit 429e105

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

compose/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ help:
2323
@echo "$(call format,cache-clean,'Access the cache-clean CLI.')"
2424
@echo "$(call format,cli,'Run any CLI command without going into the bash prompt.')"
2525
@echo "$(call format,clinotty,'Run any CLI command with no TTY.')"
26-
@echo "$(call format,cliq,'Run any CLI command but pipes all output to /dev/null.')"
26+
@echo "$(call format,cliq,'Run any CLI command but pipe all output to /dev/null.')"
2727
@echo "$(call format,composer,'Run the composer binary.')"
2828
@echo "$(call format,copyfromcontainer,'Copy folders or files from container to host.')"
2929
@echo "$(call format,copytocontainer,'Copy folders or files from host to container.')"
@@ -45,7 +45,7 @@ help:
4545
@echo "$(call format,pwa-studio,'(BETA) Start the PWA Studio server.')"
4646
@echo "$(call format,redis,'Run a command from the redis container.')"
4747
@echo "$(call format,remove,'Remove all containers.')"
48-
@echo "$(call format,removeall,'Remove all containers$(comma) networks$(comma) volumes$(comma) and images.')"
48+
@echo "$(call format,removeall,'Remove all containers$(comma) networks$(comma) volumes and images.')"
4949
@echo "$(call format,removevolumes,'Remove all volumes.')"
5050
@echo "$(call format,restart,'Stop and then start all containers.')"
5151
@echo "$(call format,root,'Run any CLI command as root without going into the bash prompt.')"
@@ -60,7 +60,7 @@ help:
6060
@echo "$(call format,start,'Start all containers.')"
6161
@echo "$(call format,status,'Check the container status.')"
6262
@echo "$(call format,stop,'Stop all containers.')"
63-
@echo "$(call format,update,'Stop all containers.')"
63+
@echo "$(call format,update,'Update your project to the latest version of docker-magento.')"
6464
@echo "$(call format,xdebug,'Disable or enable Xdebug.')"
6565

6666
bash:

compose/bin/setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ bin/clinotty bin/magento cache:flush
9292
echo "Installing cron, run 'bin/cron start' to enable..."
9393
bin/clinotty bin/magento cron:install
9494

95-
echo "Turning on developer mode.."
95+
echo "Turning on developer mode..."
9696
bin/clinotty bin/magento deploy:mode:set developer
9797

9898
mv .vscode src/

compose/bin/setup-composer-auth

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PUBLIC_KEY="$(bin/clinotty composer config --global $MAGENTO_USERNAME_PROP 2>/de
77
PRIVATE_KEY="$(bin/clinotty composer config --global $MAGENTO_PASSWORD_PROP 2>/dev/null)"
88

99
if [ -n "$PUBLIC_KEY" ] && [ -n "$PRIVATE_KEY" ]; then
10-
echo "Composer auth has already been setup."
10+
echo "Composer auth has already been set up."
1111
exit 0
1212
fi
1313

@@ -36,4 +36,4 @@ echo "composer config --global http-basic.repo.magento.com ${PUBLIC_KEY} ${PRIVA
3636
# Also make sure alternate auth.json is setup (Magento uses this internally)
3737
bin/clinotty [ -d "./var/composer_home" ] && bin/clinotty cp /var/www/.composer/auth.json ./var/composer_home/auth.json
3838

39-
echo "Composer auth has been setup."
39+
echo "Composer auth has been set up."

0 commit comments

Comments
 (0)