Skip to content

Commit

Permalink
Merge pull request #2470 from bonomat/fix/justfile
Browse files Browse the repository at this point in the history
fix: add missing line separator
  • Loading branch information
bonomat authored Apr 25, 2024
2 parents 0bf215b + 51224be commit ae95f73
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ run-regtest-android args="":
--dart-define="COORDINATOR_PORT_HTTP={{public_coordinator_http_port}}" \
--dart-define="ORACLE_ENDPOINT={{public_regtest_oracle_endpoint}}" \
--dart-define="ORACLE_PUBKEY={{public_regtest_oracle_pk}}" \
--dart-define="MEME_ENDPOINT=http://api.10101.finance/memes/"
--dart-define="MEME_ENDPOINT=http://api.10101.finance/memes/" \
--flavor test
[unix]
Expand All @@ -180,7 +180,7 @@ run-local-android args="":
--dart-define="COORDINATOR_PORT_HTTP=8000" \
--dart-define="ORACLE_ENDPOINT=http://${LOCAL_IP}:8081" \
--dart-define="ORACLE_PUBKEY=16f88cf7d21e6c0f46bcbc983a4e3b19726c6c98858cc31c83551a88fde171c0" \
--dart-define="MEME_ENDPOINT=http://${LOCAL_IP}:8080/memes/"
--dart-define="MEME_ENDPOINT=http://${LOCAL_IP}:8080/memes/" \
--flavor local
fund args="":
Expand Down Expand Up @@ -505,7 +505,7 @@ build-ipa args="":
--dart-define="COORDINATOR_PORT_HTTP=${COORDINATOR_PORT_HTTP}" \
--dart-define="ORACLE_ENDPOINT=${ORACLE_ENDPOINT}" \
--dart-define="ORACLE_PUBKEY=${ORACLE_PUBKEY}" \
--dart-define="MEME_ENDPOINT=${MEME_ENDPOINT}"
--dart-define="MEME_ENDPOINT=${MEME_ENDPOINT}" \
--build-number=${BUILD_NUMBER} \
{{args}}

Expand Down

0 comments on commit ae95f73

Please sign in to comment.