Skip to content

Commit 344a33d

Browse files
authored
Fix export commands in CLOUD_BOX_GUIDE.md
Updated environment variable export commands in the guide.
1 parent da6d0b8 commit 344a33d

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

CLOUD_BOX_GUIDE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ Put `sfbox` on your `PATH`, from the directory holding your clone.
5454
**Copy and paste**
5555

5656
```bash
57+
cd $HOME && mkdir software-factory-intensive
58+
cd software-factory-intensive
59+
export SFI_PATH="$(pwd)"
60+
git clone https://github.com/actual-software/sf-tutorial.git
61+
5762
export PATH="$SFI_PATH/sf-tutorial/participant-box-cli:$PATH"
5863
sfbox --help
5964
```
@@ -65,6 +70,7 @@ Add both of these environment variables to your shell for future use:
6570
```bash
6671
cat <<EOF >> ~/.zshrc
6772
export SFI_KEY=$HOME/Downloads/key.pem
73+
export SFI_PATH="$(pwd)"
6874
export PATH="$PWD/sf-tutorial/participant-box-cli:$PATH"
6975
EOF
7076
```
@@ -74,6 +80,7 @@ EOF
7480
```bash
7581
cat <<EOF >> ~/.bashrc
7682
export SFI_KEY=$HOME/Downloads/key.pem
83+
export SFI_PATH="$(pwd)"
7784
export PATH="$PWD/sf-tutorial/participant-box-cli:$PATH"
7885
EOF
7986
```

0 commit comments

Comments
 (0)