Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(devops): Cleaner output #5

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading