Commit Graph

159 Commits

Author SHA1 Message Date
Avital Oliver
5fe931056b Better error when releasing an unbuilt git sha 2014-05-09 16:30:23 -07:00
Felix Rabe
3431c66c16 Fix occurrences of "cd dirname $0"
They are not safe for spaces in paths. There might be other places to look for trouble.

I've run the following command to produce this commit: (on OS X, copy-and-pasting the below exactly)

    find . -type f -name '*.sh' -print0  |  # Find all .sh files
        xargs -0 fgrep -H -- '`'         |  # See all places with backticks in them
        fgrep 'cd `dirname $0'           |  # I deemed these problematic (variable assignments are safe)
        cut -d ':' -f 1                  |  # Take the <file> from <file>:<line> produced by "grep -H"
        tr '\n' '\0'                     |  # Also here, spaces can be problematic - always do "xargs -0"!
        xargs -0 -- sed -i '' 's/cd `dirname $0`/cd "`dirname "$0"`"/g'

The significance of adding the two levels of "'s can be verified by running the following in your Terminal:

    $ node -e 'console.log(process.argv.splice(1))' -- `echo 1   2`
    [ '1', '2' ]

    $ node -e 'console.log(process.argv.splice(1))' -- "`echo 1   2`"
    [ '1 2' ]

    $ node -e 'console.log(process.argv.splice(1))' -- "`echo "1   2"`"
    [ '1   2' ]
2014-05-07 17:51:09 -07:00
Emily Stark
399629e941 Merge branch 'release-0.8.1.1'
The large number of conflicts is because release-0.8.1.1 was branched
off of release/0.8.1 instead of master.

Conflicts:
	History.md
	docs/.meteor/release
	docs/lib/release-override.js
	examples/clock/.meteor/release
	examples/leaderboard/.meteor/release
	examples/parties/.meteor/release
	examples/todos/.meteor/release
	examples/wordplay/.meteor/release
	scripts/admin/banner.txt
	scripts/admin/notices.json
2014-05-01 12:37:41 -07:00
Emily Stark
629423d514 Update banner and notices 2014-05-01 12:17:24 -07:00
Emily Stark
4b6d88828e tweak notices 2014-04-30 10:47:37 -07:00
Emily Stark
68f4425841 tweak banner 2014-04-30 10:28:40 -07:00
Emily Stark
9cd32c85ec add line break in notices 2014-04-30 10:23:01 -07:00
Emily Stark
2978ceb96d Update History, banner, notices 2014-04-30 10:21:40 -07:00
Emily Stark
25e3428132 Add 0.7.2.1 to notices 2014-04-21 15:21:53 -07:00
Emily Stark
700673592c Update notices 2014-04-21 14:51:59 -07:00
Emily Stark
41d36b671a Update banner text 2014-04-21 14:50:56 -07:00
David Glasser
6b9c74561f banner and notices rough draft 2014-03-26 20:34:31 -07:00
David Glasser
9cb2131bb6 Check package notices line length 2014-03-26 20:33:56 -07:00
David Glasser
1d9c2443e8 Automatically remove deprecated preserve-inputs 2014-03-26 15:02:34 -07:00
Avital Oliver
748c4db7a3 No more spark and universal-events packages 2014-03-25 19:09:56 -07:00
Nick Martin
294a945e17 update banner text 2014-03-18 14:02:22 -07:00
Nick Martin
668f23f548 first cut banner and notices. 2014-03-18 01:06:10 -07:00
Nick Martin
4555d2c8e4 Merge branch 'release-0.7.1.2'
Conflicts:
	History.md
	docs/.meteor/release
	docs/lib/release-override.js
	examples/leaderboard/.meteor/release
	examples/parties/.meteor/release
	examples/todos/.meteor/release
	examples/wordplay/.meteor/release
	scripts/admin/banner.txt
2014-02-26 17:57:39 -08:00
Emily Stark
3caa3b9e9c Update banner and notices for 0.7.1.2 2014-02-26 13:51:58 -08:00
Emily Stark
d32d2de1d6 Update banner/notices/History for 0.7.1.1 2014-02-24 13:48:24 -08:00
Matt DeBergalis
f8eec237a6 mention oplog 2014-02-24 12:42:51 -08:00
Nick Martin
48cfc719ef Oops, missed one. Thanks, Tim. 2014-02-23 19:46:29 -08:00
Nick Martin
dd47415027 First cut banner and notices. 2014-02-23 19:00:58 -08:00
Geoff Schmidt
d1d714ec66 'whoami' gracefully handles revocation of a credential
on a passwordless account. with test
2014-02-18 17:25:19 -08:00
David Glasser
72cc8603b5 publish-release needs a release file 2014-02-14 01:00:12 -08:00
David Glasser
120fa97417 slightly changed awssum 2014-02-05 17:03:11 -08:00
David Glasser
a49e7def5e Merge branch 'sso' into tool-refactoring
Conflicts:
	tools/meteor.js
	tools/run.js
2014-01-30 10:49:29 -08:00
Emily Stark
36ff205437 Merge remote-tracking branch 'origin/devel' into sso 2014-01-30 10:18:42 -08:00
Geoff Schmidt
e1994f6ece First installment of 'meteor run' tests.
Tests meteor --once and restarting on upgrade.
2014-01-29 02:02:17 -08:00
Avital Oliver
f8f94c7118 Try to fix inconsistent release manifest generation; Take 2 2014-01-27 14:15:53 -08:00
Avital Oliver
91c4d3d8a2 Try to fix inconsistent release manifest generation
Apparently on some platforms "a5" < "a-" and on others
"a-" < "a5"
2014-01-27 14:15:53 -08:00
David Glasser
a7d10d650d Update Node to 0.10.25. Remove bug workaround. 2014-01-23 12:15:29 -08:00
Emily Stark
b296dcbdf2 Merge remote-tracking branch 'origin/devel' into sso
Conflicts:
	packages/accounts-base/accounts_server.js
2014-01-02 17:46:01 -08:00
David Glasser
252caab5c1 Add instructions to https://install.meteor.com/ 2013-12-29 16:42:08 -08:00
David Glasser
4206955140 Better banner text 2013-12-20 13:58:30 -08:00
David Glasser
51ad916caf Banner and notice update for 0.7.0.1. 2013-12-20 13:53:08 -08:00
Geoff Schmidt
b9f63839e6 Merge branch 'devel' into sso 2013-12-19 17:17:01 -08:00
Nick Martin
8bd400e560 lets do 0.7.0 instead 2013-12-17 10:54:33 -08:00
Nick Martin
a0734bfe58 strawman banner.txt and notices. 2013-12-17 01:43:20 -08:00
Geoff Schmidt
14337d416c support meteor --get-ready for warehouse installs too 2013-12-09 04:18:54 -08:00
Nick Martin
b20c2c6ef6 Try to create /usr/local if it doesn't exist. New MacOSX comes with /usr/local/bin in the path, but not existing on disk. 2013-11-12 18:02:58 -08:00
Avital Oliver
3dedfc6083 0.6.6.3 banner tweaked by matt 2013-11-04 12:01:00 -08:00
Avital Oliver
f8bd4910b2 empty notices for 0.6.6.3 2013-11-01 15:59:42 -07:00
Avital Oliver
faeca08711 banner for 0.6.6.3 2013-11-01 15:59:16 -07:00
Nick Martin
d687d974a0 banner and notices for 0.6.6.2 2013-10-21 15:25:34 -07:00
Nick Martin
cb1d30c7e8 History for 0.6.6.1 2013-10-11 17:19:27 -07:00
Nick Martin
47babd170f banner and notices for 0.6.6.1 2013-10-11 17:12:10 -07:00
Nick Martin
3733ab1c72 fix bless release script for update getUrl function. 2013-10-10 12:58:05 -07:00
Nick Martin
82067795f6 banner text tweak. 2013-10-10 12:45:40 -07:00
Nick Martin
b9562447bd Notices and first draft banner. 2013-10-09 20:58:03 -07:00