Revert the new dev_bundle

This commit is contained in:
Slava Kim
2015-03-04 16:13:40 -08:00
parent 8ea3712955
commit 419befbf5f
2 changed files with 1 additions and 6 deletions

2
meteor
View File

@@ -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.

View File

@@ -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\.."