Skip to content
This repository has been archived by the owner on Oct 20, 2021. It is now read-only.

Commit

Permalink
Add argument passthrough to init.sh (#245)
Browse files Browse the repository at this point in the history
* Add argument passthrough to init.sh

* Add unsafe support to generated code

* Inline

* update pin for codegen fix
  • Loading branch information
zeroZshadow authored Jan 30, 2020
1 parent 154c635 commit 346bae6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ci/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [ "$SKIP_GDK" = false ] ; then
git fetch --depth 20 origin "${PINNED_BRANCH}"
git checkout "${PINNED_VERSION}"
echo "--- Hit init :right-facing_fist::red_button:"
./init.sh
./init.sh $@
popd
fi

Expand Down
2 changes: 1 addition & 1 deletion gdk.pinned
Original file line number Diff line number Diff line change
@@ -1 +1 @@
develop 3a2a296551553f7d4a5e91a03ad3d4a8481edff5
develop 2b4d3a928bf5bc68904cc1e919a4c2f9e6a860c4
2 changes: 1 addition & 1 deletion init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -e -u -x -o pipefail

cd "$(dirname "$0")"

./ci/bootstrap.sh
./ci/bootstrap.sh $@
10 changes: 7 additions & 3 deletions workers/unity/Assets/Generated/Improbable.Gdk.Generated.asmdef
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
"Unity.Entities.Hybrid",
"Improbable.Gdk.Core"
],
"optionalUnityReferences": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false
}
"allowUnsafeCode": true,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": []
}

0 comments on commit 346bae6

Please sign in to comment.