Skip to content

Commit

Permalink
build: rename package to 'namada'
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman authored and juped committed Jul 27, 2022
1 parent 5654796 commit a62200d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package = anoma
package = namada

cargo := $(env) cargo
rustup := $(env) rustup
Expand Down Expand Up @@ -97,27 +97,27 @@ install: tendermint
ANOMA_DEV=false $(cargo) install --path ./apps --locked

tendermint:
./scripts/install/get_tendermint.sh
./scripts/get_tendermint.sh

run-ledger:
# runs the node
$(cargo) run --bin anoman -- ledger run
$(cargo) run --bin namadan -- ledger run

run-ledger-abci-plus-plus:
# runs the node
$(cargo) run --bin anoman --no-default-features --features "ABCI-plus-plus" -- ledger run
$(cargo) run --bin namadan --no-default-features --features "ABCI-plus-plus" -- ledger run

run-gossip:
# runs the node gossip node
$(cargo) run --bin anoman -- gossip run
$(cargo) run --bin namadan -- gossip run

reset-ledger:
# runs the node
$(cargo) run --bin anoman -- ledger reset
$(cargo) run --bin namadan -- ledger reset

reset-ledger-abci-plus-plus:
# runs the node
$(cargo) run --bin anoman --no-default-features --features "ABCI-plus-plus" -- ledger reset
$(cargo) run --bin namadan --no-default-features --features "ABCI-plus-plus" -- ledger reset

audit:
$(cargo) audit $(foreach ignore,$(audit-ignores), --ignore $(ignore))
Expand Down
6 changes: 3 additions & 3 deletions scripts/make-package.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/usr/bin/env bash

# Make a release archive from built Anoma binaries and dylib(s)
# Make a release archive from built Namada binaries and dylib(s)

set -e

VERSION="$(git describe --dirty --broken)"
PLATFORM="$(uname -s)-$(uname -m)"
PACKAGE_NAME="anoma-${VERSION}-${PLATFORM}"
BIN="anoma anomac anoman anomaw"
PACKAGE_NAME="namada-${VERSION}-${PLATFORM}"
BIN="namada namadac namadan namadaw"

mkdir -p ${PACKAGE_NAME} && \
cd target/release && \
Expand Down

0 comments on commit a62200d

Please sign in to comment.