Skip to content

Commit

Permalink
use double slash prefix for improved windows support (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnjamin authored Oct 14, 2021
1 parent 90cf76e commit c3fa3ac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export ALGOD_URL="https://github.com/algorand/go-algorand"
export ALGOD_BRANCH="master"
export ALGOD_SHA=""
export NETWORK=""
export NETWORK_TEMPLATE="/tmp/images/algod/DevModeNetwork.json"
export NETWORK_TEMPLATE="images/algod/DevModeNetwork.json"
export NETWORK_BOOTSTRAP_URL=""
export NETWORK_GENESIS_FILE=""
export INDEXER_URL="https://github.com/algorand/indexer"
Expand Down
2 changes: 1 addition & 1 deletion config.nightly
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export ALGOD_URL=""
export ALGOD_BRANCH=""
export ALGOD_SHA=""
export NETWORK=""
export NETWORK_TEMPLATE="/tmp/images/algod/future_template.json"
export NETWORK_TEMPLATE="images/algod/future_template.json"
export NETWORK_BOOTSTRAP_URL=""
export NETWORK_GENESIS_FILE=""
export INDEXER_URL="https://github.com/algorand/indexer"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
SHA: "${ALGOD_SHA}"
BOOTSTRAP_URL: "${NETWORK_BOOTSTRAP_URL}"
GENESIS_FILE: "${NETWORK_GENESIS_FILE}"
TEMPLATE: "${NETWORK_TEMPLATE:-/tmp/images/algod/template.json}"
TEMPLATE: "${NETWORK_TEMPLATE:-images/algod/template.json}"
TOKEN: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
ALGOD_PORT: "4001"
KMD_PORT: "4002"
Expand Down
2 changes: 1 addition & 1 deletion images/algod/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN /tmp/images/algod/setup.py \
--data-dir "/opt/data" \
--start-script "/opt/start_algod.sh" \
--network-dir "/opt/testnetwork" \
--network-template "${TEMPLATE}" \
--network-template "//tmp/${TEMPLATE}" \
--network-token "${TOKEN}" \
--algod-port "${ALGOD_PORT}" \
--kmd-port "${KMD_PORT}" \
Expand Down

0 comments on commit c3fa3ac

Please sign in to comment.