Fixed coffeescript syntax in top example

The `cat 'macro.js'` needs parentesis to not include `file`.

```javascript
sed('-i', /.*REPLACE_LINE_WITH_MACRO.*\n/, cat('macro.js', file));
```
This commit is contained in:
Max Nordlund 2013-12-18 09:46:08 +01:00
Родитель 284fc1cc34
Коммит a10eee9b40
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -81,7 +81,7 @@ cd 'lib'
for file in ls '*.js'
sed '-i', 'BUILD_VERSION', 'v0.1.2', file
sed '-i', /.*REMOVE_THIS_LINE.*\n/, '', file
sed '-i', /.*REPLACE_LINE_WITH_MACRO.*\n/, cat 'macro.js', file
sed '-i', /.*REPLACE_LINE_WITH_MACRO.*\n/, cat('macro.js'), file
cd '..'
# Run external tool synchronously