Skip to content

Commit d34b84c

Browse files
committed
chore: Minor wording change in postinstall.sh
1 parent f8bbe42 commit d34b84c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/postinstall.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ for dir in "./src/"*/; do
99
contract_name=$(basename "${dir}")
1010

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

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

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

0 commit comments

Comments
 (0)