Skip to content

Commit

Permalink
chore: enable default features during faucet release
Browse files Browse the repository at this point in the history
  • Loading branch information
RolandSherwin committed May 20, 2024
1 parent f247baa commit b32a9cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ build-release-artifacts arch:

if [[ $arch == arm* || $arch == armv7* || $arch == aarch64* ]]; then
cargo install cross
cross build --release --target $arch --bin faucet --features=distribution --no-default-features
cross build --release --target $arch --bin faucet --features=distribution
cross build --release --target $arch --bin node-launchpad
cross build --release --features="network-contacts,distribution" --target $arch --bin safe
cross build --release --features=network-contacts --target $arch --bin safenode
Expand All @@ -122,7 +122,7 @@ build-release-artifacts arch:
cross build --release --target $arch --bin safenode_rpc_client
cross build --release --target $arch --bin sn_auditor
else
cargo build --release --target $arch --bin faucet --features=distribution --no-default-features
cargo build --release --target $arch --bin faucet --features=distribution
cargo build --release --target $arch --bin node-launchpad
cargo build --release --features="network-contacts,distribution" --target $arch --bin safe
cargo build --release --features=network-contacts --target $arch --bin safenode
Expand Down
1 change: 0 additions & 1 deletion sn_faucet/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
// permissions and limitations relating to use of the SAFE Network Software.

mod faucet_server;

#[cfg(feature = "distribution")]
mod token_distribution;

Expand Down

0 comments on commit b32a9cc

Please sign in to comment.