Skip to content

Commit

Permalink
Version 3.4.0-199.0.dev
Browse files Browse the repository at this point in the history
Merge a257981 into dev
  • Loading branch information
Dart CI committed Mar 5, 2024
2 parents e18575c + a257981 commit b60ba5e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions sdk_args.gni
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,7 @@ declare_args() {
# to out/ReleaseX64/args.gn. The path above can be extracted from the `.git`
# file under the git worktree folder.
# The script run here should take care of everything automatically though.
default_git_folder = exec_script("$_dart_root/tools/get_dot_git_folder.py",
[
rebase_path("$_dart_root/.git"),
"$_dart_root/.git",
],
"trim string")
default_git_folder = ""

# Whether to enable the SDK hash check that will prevent loading a kernel
# into a VM which was built with a different SDK.
Expand All @@ -34,6 +29,15 @@ declare_args() {
dart_sdk_output = "dart-sdk"
}

if (default_git_folder == "") {
default_git_folder = exec_script("$_dart_root/tools/get_dot_git_folder.py",
[
rebase_path("$_dart_root/.git"),
"$_dart_root/.git",
],
"trim string")
}

# The SDK hash to build into VM and kernels.
# The value 0000000000 signifies no hash is set, which will disable the check.
if (verify_sdk_hash) {
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 4
PATCH 0
PRERELEASE 198
PRERELEASE 199
PRERELEASE_PATCH 0

0 comments on commit b60ba5e

Please sign in to comment.