Skip to content

Commit cbeb58f

Browse files
author
Jonathan Major
authored
Merge pull request #74 from jgrabenstein/master
UNFILED: tutorial setup fixes
2 parents d490ee1 + 860482d commit cbeb58f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Setup/rapture.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SET "RAPTURE_HOME=%CD%\.."
88

99
REM "*************************************************************"
1010
REM get etienne credentials to setup env info
11-
SET "etienneurl=developer2.incapture.net"
11+
SET "etienneurl=developer.incapture.net"
1212
SET /P user=Enter Incapture User:
1313
SET /P pass=Enter Incapture Password:
1414

Setup/rapture.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
HOST="http://developer2.incapture.net:8080"
2+
HOST="http://developer.incapture.net:8080"
33
REFLEX_RUNNER_LATEST_HOST="https://github.com"
44
REFLEX_RUNNER_LATEST="$REFLEX_RUNNER_LATEST_HOST/RapturePlatform/Rapture/releases/latest"
55

@@ -58,15 +58,15 @@ function get_download_link {
5858
local pattern="href=\"(.*ReflexRunner.*\.zip)\""
5959
local use_next_zip=false
6060
while read line; do
61-
if $use_next_zip && [[ $line =~ $pattern ]]; then
61+
if [[ $line =~ $pattern ]]; then
6262
download_link="${BASH_REMATCH[1]}"
6363
break
6464
elif [[ $line =~ release-downloads ]]; then
6565
use_next_zip=true
6666
fi
6767
done <<< "$page_html"
6868

69-
echo "$REFLEX_RUNNER_LATEST_HOST$download_link"
69+
echo "$download_link"
7070
}
7171

7272
function find_in_directory {

0 commit comments

Comments
 (0)