From 1da2dd227c3801091246202281fea7ec182b4520 Mon Sep 17 00:00:00 2001 From: aelf-lu Date: Mon, 12 Feb 2024 22:08:58 +0800 Subject: [PATCH] fix: add comments --- .devcontainer/aelf-contract-templates/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.devcontainer/aelf-contract-templates/install.sh b/.devcontainer/aelf-contract-templates/install.sh index c9973dc..1117a6b 100644 --- a/.devcontainer/aelf-contract-templates/install.sh +++ b/.devcontainer/aelf-contract-templates/install.sh @@ -20,6 +20,7 @@ AELF_TOOLS_TARGET_PATH=/aelf-tools git clone -b $AELF_TOOLS_BRANCH https://github.com/AElfProject/aelf-developer-tools.git $HOME$AELF_TOOLS_TARGET_PATH dotnet pack -c Release -o $HOME $HOME$AELF_TOOLS_TARGET_PATH/aelf.tools/AElf.Tools -p:Version=$AELF_TOOLS_VERSION dotnet nuget push $HOME/AElf.Tools.1.0.5.nupkg -s LocalNuget +echo "AElf.Tools 1.0.5 deployed" CONTRACT_TEMPLATE_VERSION=1.0.0 CONTRACT_TEMPLATE_BRANCH=feature/acs-template @@ -27,6 +28,7 @@ CONTRACT_TEMPLATE_TARGET_PATH=/aelf-template git clone -b $CONTRACT_TEMPLATE_BRANCH https://github.com/AElfProject/aelf-developer-tools.git $HOME$CONTRACT_TEMPLATE_TARGET_PATH dotnet pack -c Release -o $HOME $HOME$CONTRACT_TEMPLATE_TARGET_PATH/templates -p:Version=$CONTRACT_TEMPLATE_VERSION dotnet nuget push $HOME/AElf.ContractTemplates.1.0.0.nupkg -s LocalNuget +echo "AElf.ContractTemplates 1.0.0 deployed" if [ $VERSION = "latest" ]; then dotnet new --install AElf.ContractTemplates