1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

switch octal format (#1060)

This commit is contained in:
Luke Edwards 2017-02-09 12:58:48 -08:00 committed by Tim Neutkens
parent 864fe60a15
commit 15facf0ae1

View file

@ -10,7 +10,7 @@ export async function compile(fly) {
}
export async function bin(fly, opts) {
await fly.source(opts.src || 'bin/*').babel().target('dist/bin', {mode: 0o755})
await fly.source(opts.src || 'bin/*').babel().target('dist/bin', {mode: 0755})
notify('Compiled binaries')
}