Commit 5779d6e 1 parent 9b62335 commit 5779d6e Copy full SHA for 5779d6e
File tree 4 files changed +16
-2
lines changed
4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ RUN go mod download
9
9
10
10
COPY Makefile* *.go ./
11
11
COPY app/ app/
12
+ COPY bin/ bin/
12
13
COPY x/ x/
13
14
COPY cmd/ cmd/
14
15
COPY lib/*.go lib/
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ scenario1-run-chain:
65
65
scenario1-run-client :
66
66
AG_SOLO_BASEDIR=t7 ve3/bin/ag-setup-solo --webhost=127.0.0.1:$(BASE_PORT )
67
67
68
- AGC = ./lib /ag-chain-cosmos
68
+ AGC = ./bin /ag-chain-cosmos
69
69
AGCH = ag-cosmos-helper
70
70
scenario2-setup : all scenario2-setup-nobuild
71
71
scenario2-setup-nobuild :
@@ -173,7 +173,7 @@ compile-gyp:
173
173
install : go.sum
174
174
go install -v $(MOD_READONLY ) $(BUILD_FLAGS ) ./cmd/ag-cosmos-helper
175
175
bindir=" $$ {GOBIN-$$ {GOPATH-$$ HOME/go}/bin}" ; \
176
- ln -sf " $$ PWD/lib /ag-chain-cosmos" " $$ PWD/bin/ag-nchainz" " $$ bindir/"
176
+ ln -sf " $$ PWD/bin /ag-chain-cosmos" " $$ PWD/bin/ag-nchainz" " $$ bindir/"
177
177
178
178
go.sum : go.mod
179
179
@echo " --> Ensure dependencies have not been modified"
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ real0=$( readlink " ${BASH_SOURCE[0]} " || echo " ${BASH_SOURCE[0]} " )
3
+ thisdir=$( cd " $( dirname -- " $real0 " ) " && pwd -P)
4
+ nodeFlags=()
5
+ while test $# -gt 0; do
6
+ case " $1 " in
7
+ --inspect* ) nodeFlags+=( " $1 " ) ;;
8
+ * ) break ;;
9
+ esac
10
+ shift
11
+ done
12
+
13
+ exec node ${nodeFlags[@]} " $thisdir /../lib/chain-entrypoint.js" ${1+" $@ " }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments