Skip to content

Commit

Permalink
Update script logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Garkusha committed Oct 3, 2022
1 parent 813d038 commit c28b525
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions scripts/lib/build_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ sed -i 's/\\r\\n/\r\n/g' ~/.config/dfx/identity/admin/identity.pem

dfx identity use admin

echo "Build event_system canister"
echo "Build canister"

dfx canister --network local create event_system
dfx build --network local event_system
dfx canister --network local create --all
dfx build --network local --all

6 changes: 3 additions & 3 deletions scripts/lib/build_prod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ sed -i 's/\\r\\n/\r\n/g' ~/.config/dfx/identity/admin/identity.pem

dfx identity use admin

echo "Build event_system canister"
echo "Build canister"

dfx canister --network local create event_system
dfx build --network local event_system
dfx canister --network local create --all
dfx build --network local --all

6 changes: 3 additions & 3 deletions scripts/lib/build_stage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ sed -i 's/\\r\\n/\r\n/g' ~/.config/dfx/identity/admin/identity.pem

dfx identity use admin

echo "Build event_system canister"
echo "Build canister"

dfx canister --network local create event_system
dfx build --network local event_system
dfx canister --network local create --all
dfx build --network local --all

0 comments on commit c28b525

Please sign in to comment.