Skip to content

Commit

Permalink
Add echo statement while downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
brikis98 committed May 9, 2016
1 parent 6881e8c commit bddc29c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gruntwork-install --module-name 'vault-ssh-helper' --tag '0.0.3'
## Installing gruntwork-install

```bash
curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.2
curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.3
```

Notice the `--version` parameter at the end where you specify which version of `gruntwork-install` to install. See the
Expand Down Expand Up @@ -77,7 +77,7 @@ and then uses it to install several modules:
}],
"provisioners": [{
"type": "shell",
"inline": "curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.2"
"inline": "curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.3"
},{
"type": "shell",
"inline": [
Expand Down
1 change: 1 addition & 0 deletions gruntwork-install
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ function fetch_script_module {
# Note that fetch can safely handle blank arguments for --tag or --branch
# If both --tag and --branch are specified, --branch will be used
# TODO: fetch should read GITHUB_OAUTH_TOKEN as an environment variable too
echo "Downloading module $module_name from $SCRIPT_MODULES_REPO"
fetch --repo="$SCRIPT_MODULES_REPO" --tag="$tag" --branch="$branch" --github-oauth-token="$github_token" "/modules/$module_name" "$download_path/$module_name" >/dev/null
}

Expand Down

0 comments on commit bddc29c

Please sign in to comment.