diff --git a/meteor b/meteor index efe0a08e8a..07897eba4a 100755 --- a/meteor +++ b/meteor @@ -1,6 +1,6 @@ #!/bin/bash -BUNDLE_VERSION=0.4.17 +BUNDLE_VERSION=0.4.16 # OS Check. Put here because here is where we download the precompiled # bundles that are arch specific. diff --git a/scripts/generate-dev-bundle.ps1 b/scripts/generate-dev-bundle.ps1 index 108b61540f..2c165d5d50 100644 --- a/scripts/generate-dev-bundle.ps1 +++ b/scripts/generate-dev-bundle.ps1 @@ -114,11 +114,6 @@ cd $DIR # mark the version echo "${BUNDLE_VERSION}" | Out-File .bundle_version.txt -Encoding ascii -# replace the \r\n end-line char with \n -# we know that the file contains only one line, so let's just remove the a[-2] char -$a = [System.IO.File]::ReadAllBytes("${BUNDLE_VERSION}") -$a = $a[0..($a.length - 3) + ($a.length - 1)] -[System.IO.File]::WriteAllBytes("${BUNDLE_VERSION}", $a) cd "$DIR\.."