Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
seriema committed Mar 29, 2020
2 parents 43f45d9 + 82a902b commit 1c46f12
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ An expensive and over-engineered approach to storing ROMs and their metadata whi
1. Install Retro-Cloud on the Raspberry Pi (creates the VM for step 2):

```bash
$ curl -sSL https://raw.githubusercontent.com/seriema/retro-cloud/develop/raspberry-pi/download-and-run.sh | bash
$ curl -sSL https://raw.githubusercontent.com/seriema/retro-cloud/master/raspberry-pi/download-and-run.sh | bash
# Or this shortened URL:
$ curl -sSL https://tiny.cc/retro-cloud-setup | bash
# Or get the latest development version:
$ curl -sSL https://tiny.cc/rc-rpi | bash
```

> **NOTE!** You will be prompted to log into your Azure account. The script pauses with the message:
Expand All @@ -36,9 +38,11 @@ An expensive and over-engineered approach to storing ROMs and their metadata whi
* On the VM. Log into the VM from the RPi with `$ bash -i ssh-vm.sh`, or any other way you want, and then run:

```bash
$ curl -sSL https://raw.githubusercontent.com/seriema/retro-cloud/develop/virtual-machine/setup.sh | bash
$ curl -sSL https://raw.githubusercontent.com/seriema/retro-cloud/master/virtual-machine/setup.sh | bash
# Or this shortened URL:
$ curl -sSL https://tiny.cc/retro-cloud-setup-vm | bash
# Or get the latest development version:
$ curl -sSL https://tiny.cc/rc-vm | bash
```

1. Copy ROMs to Azure File Share. Alternatives:
Expand Down
2 changes: 1 addition & 1 deletion raspberry-pi/download-and-run.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# Script takes optional parameter for branch name or commit hash.
branch=${1:-develop}
branch=${1:-master}

# Abort on error, and error if variable is unset
set -eu
Expand Down
2 changes: 1 addition & 1 deletion raspberry-pi/local/setup-vm.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# Script takes optional parameter for branch name or commit hash.
branch=${1:-develop}
branch=${1:-master}

# Abort on error, and error if variable is unset
set -eu
Expand Down
2 changes: 1 addition & 1 deletion virtual-machine/setup.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# Script takes optional parameter for branch name or commit hash.
branch=${1:-develop}
branch=${1:-master}

# Abort on error
set -e
Expand Down

0 comments on commit 1c46f12

Please sign in to comment.