Skip to content

Commit

Permalink
chore: Minor wording change in postinstall.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
wottpal committed Feb 5, 2024
1 parent f8bbe42 commit d34b84c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/postinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ for dir in "./src/"*/; do
contract_name=$(basename "${dir}")

if [[ ! -e "./deployments/${contract_name}/development.ts" ]]; then
echo "Creating empty 'development.ts' file for ${contract_name}"
echo "Creating empty 'development.ts' file for '${contract_name}'…"

mkdir -p "./deployments/${contract_name}"

Expand All @@ -19,6 +19,6 @@ for dir in "./src/"*/; do
copy /b "deployments/${contract_name}/development.ts" +,,
fi
else
echo "Great, 'development.ts' already exists! Skipping…"
echo "Great, 'development.ts' for '${contract_name}' already exists! Skipping…"
fi
done

0 comments on commit d34b84c

Please sign in to comment.