Skip to content

Commit

Permalink
fix: make sure ARWEAVE_DEV is handled
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesPiechota committed Mar 7, 2025
1 parent 66d870d commit 36a0b6a
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion arweave-server
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
set -e
SCRIPT_DIR="$(dirname "$0")"
ARWEAVE_DEV=1
export ARWEAVE_DEV=1
"$SCRIPT_DIR/bin/start" "$@"
3 changes: 0 additions & 3 deletions bin/arweave
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ in
arweave-dev)
export ARWEAVE_DEV=1
;;
*)
unset ARWEAVE_DEV
;;
esac

######################################################################
Expand Down
2 changes: 1 addition & 1 deletion bin/e2e
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -e
SCRIPT_DIR=$(dirname ${0})
ARWEAVE_DEV=1
export ARWEAVE_DEV=1
ARWEAVE=${SCRIPT_DIR}/arweave
${ARWEAVE} test_e2e ${*}
2 changes: 1 addition & 1 deletion bin/test
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -e
SCRIPT_DIR=$(dirname ${0})
ARWEAVE_DEV=1
export ARWEAVE_DEV=1
ARWEAVE=${SCRIPT_DIR}/arweave
${ARWEAVE} test ${*}
3 changes: 0 additions & 3 deletions priv/templates/extended_bin
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ in
arweave-dev)
export ARWEAVE_DEV=1
;;
*)
unset ARWEAVE_DEV
;;
esac

######################################################################
Expand Down

0 comments on commit 36a0b6a

Please sign in to comment.