change $USER to ${USER} to avoid history expansion

see [here](http://stackoverflow.com/questions/15140221/weired-zsh-behavior-how-to-debug/)
This commit is contained in:
Robin Wenglewski 2013-02-28 19:18:30 +01:00
parent 0b590ebc49
commit 8d29c7b59d

View file

@ -15,7 +15,7 @@ This repository template is just a basic example of _how_ to do things with them
1. Use your install of [boxen-web](https://github.com/boxen/boxen-web) or get running manually like so: 1. Use your install of [boxen-web](https://github.com/boxen/boxen-web) or get running manually like so:
``` ```
sudo mkdir -p /opt/boxen sudo mkdir -p /opt/boxen
sudo chown $USER:admin /opt/boxen sudo chown ${USER}:admin /opt/boxen
mkdir -p ~/src/my-boxen mkdir -p ~/src/my-boxen
cd ~/src/my-boxen cd ~/src/my-boxen
git init git init
@ -48,7 +48,7 @@ create an entirely separate repo and simply pull the code in, as shown above.
``` ```
sudo mkdir -p /opt/boxen sudo mkdir -p /opt/boxen
sudo chown $USER:admin /opt/boxen sudo chown ${USER}:admin /opt/boxen
git clone https://github.com/yourorg/yourreponame.git /opt/boxen/repo git clone https://github.com/yourorg/yourreponame.git /opt/boxen/repo
cd /opt/boxen/repo cd /opt/boxen/repo
script/boxen script/boxen