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

Commit 86f8dee

Browse files
authored
Init.sh argument passthrough (#82)
* Update pin to allow cn-production Add flag passthrough to init.sh and bootstrap.sh * Fix codegen asmdef * update pin for codegen fix
1 parent d54b50a commit 86f8dee

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

ci/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ if [ "$SKIP_GDK" = false ] ; then
7676
git fetch --depth 20 origin "${PINNED_BRANCH}"
7777
git checkout "${PINNED_VERSION}"
7878
echo "--- Hit init :right-facing_fist::red_button:"
79-
./init.sh
79+
./init.sh $@
8080
popd
8181
fi
8282

gdk.pinned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
develop 3a2a296551553f7d4a5e91a03ad3d4a8481edff5
1+
develop 2b4d3a928bf5bc68904cc1e919a4c2f9e6a860c4

init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ set -e -u -x -o pipefail
33

44
cd "$(dirname "$0")"
55

6-
./ci/bootstrap.sh
6+
./ci/bootstrap.sh $@
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Improbable.Gdk.Generated",
3-
"references": [
3+
"references": [
44
"Improbable.Gdk.Core",
55
"Unity.Collections",
66
"Unity.Entities",
@@ -9,5 +9,10 @@
99
],
1010
"includePlatforms": [],
1111
"excludePlatforms": [],
12-
"allowUnsafeCode": false
12+
"allowUnsafeCode": true,
13+
"overrideReferences": false,
14+
"precompiledReferences": [],
15+
"autoReferenced": true,
16+
"defineConstraints": [],
17+
"versionDefines": []
1318
}

0 commit comments

Comments
 (0)