Skip to content

Commit

Permalink
chore(devops): Cleaner output (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitdivine authored Sep 17, 2024
1 parent 7518b49 commit 5740b69
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/target
# Testing tool
pocket-ic
pocket-ic.gz
# dfx working dir
.dfx
# dfx env file
Expand Down
2 changes: 1 addition & 1 deletion scripts/pic-install
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
exit 1
fi

if "$POCKET_IC_SERVER_PATH" --version | grep -wq "$POCKET_IC_SERVER_VERSION" ; then
if "$POCKET_IC_SERVER_PATH" --version &>/dev/null | grep -wq "$POCKET_IC_SERVER_VERSION" ; then
echo "PocketIC server already exists at: $POCKET_IC_SERVER_PATH"
echo "Skipping download."
else
Expand Down
1 change: 0 additions & 1 deletion src/example/paid_service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use ic_papi_guard::guards::PaymentGuard;
use ic_papi_guard::guards::{
attached_cycles::AttachedCyclesPayment, icrc2_cycles::Icrc2CyclesPaymentGuard,
};
use serde_bytes::ByteBuf;
use state::{payment_ledger, set_init_args};

#[init]
Expand Down

0 comments on commit 5740b69

Please sign in to comment.