Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gobengo committed Feb 22, 2018
1 parent 3010695 commit 1e96fc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ __work in progress__
## Remote Linux via SSH ##

Create a server (e.g., digitalocean on some other place) with one of the following tested OS on it:
* Ubuntu 16.04
* Debian 8.10
* Ubuntu 17.10 x64
* Ubuntu 16.04 x64
* Debian 8.10 x64

Clone this repository on your local machine.

Expand Down
2 changes: 1 addition & 1 deletion build/bin/lint
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ if [ -z "$file" ]; then
else
# check that file
cd "$(dirname "$file")"
shellcheck -x "$(basename "$file")"
shellcheck -e SC2029 -x "$(basename "$file")"
fi
2 changes: 1 addition & 1 deletion build/remote
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ source ./variables
exitnode_ssh=$1
PUBLIC_IP="${PUBLIC_IP:-$(echo "$exitnode_ssh" | cut -d'@' -f2)}"

ssh "$exitnode_ssh" echo testing ssh to "\$exitnode_ssh"
ssh "$exitnode_ssh" echo testing ssh to "$exitnode_ssh"

# rsync these files so we can configure
ssh "$exitnode_ssh" apt-get install -yq rsync > /dev/null 2>&1
Expand Down

0 comments on commit 1e96fc1

Please sign in to comment.