clean up logging

pull/164/head
Aaron Trudeau 2022-01-27 02:32:02 -05:00
parent 16c034f767
commit 4312493fc4
No known key found for this signature in database
GPG Key ID: 29F89A9BDAAF7BDE
1 changed files with 1 additions and 4 deletions

View File

@ -47,6 +47,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then
# use jq to add the package to the temp project through manually modifying Packages/manifest.json
echo "Adding package to the temporary project's dependencies and testables..."
echo ""
PACKAGE_MANIFEST_PATH="./TempProject/Packages/manifest.json"
if [ ! -f "$PACKAGE_MANIFEST_PATH" ]; then
@ -62,11 +63,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then
'.dependencies += {"\($packageName)": "file:\($projectPath)"} | . += {testables: ["\($packageName)"]}' \
> "$PACKAGE_MANIFEST_PATH"
cat "$PACKAGE_MANIFEST_PATH"
echo ""
UNITY_PROJECT_PATH="./TempProject"
fi
#