This repository was archived by the owner on Oct 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11name : Lint
22
3- on : [push]
3+ on : [push, pull_request ]
44
55jobs :
66 build :
Original file line number Diff line number Diff line change 11name : Test
22
3- on : [push]
3+ on : [push, pull_request ]
44
55jobs :
66 build :
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ custom:
180180
181181To specify additional directories to remove from the installed packages,
182182define a list of patterns in the serverless config using the `slimPatterns`
183- option and glob syntax. These paterns will be added to the default ones (`**/*.py[c|o]`, `**/__pycache__*`, `**/*.dist-info*`).
183+ option and glob syntax. These patterns will be added to the default ones (`**/*.py[c|o]`, `**/__pycache__*`, `**/*.dist-info*`).
184184Note, the glob syntax matches against whole paths, so to match a file in any
185185directory, start your pattern with `**/`.
186186
Original file line number Diff line number Diff line change @@ -1101,7 +1101,7 @@ test(
11011101 async t => {
11021102 process . chdir ( 'tests/base' ) ;
11031103 const path = npm ( [ 'pack' , '../..' ] ) ;
1104- const perm = '775 ' ;
1104+ const perm = '755 ' ;
11051105
11061106 npm ( [ 'i' , path ] ) ;
11071107 perl ( [
@@ -1895,7 +1895,7 @@ test(
18951895 async t => {
18961896 process . chdir ( 'tests/individually' ) ;
18971897 const path = npm ( [ 'pack' , '../..' ] ) ;
1898- const perm = '775 ' ;
1898+ const perm = '755 ' ;
18991899 writeFileSync ( `module1${ sep } foobar` , '' ) ;
19001900 chmodSync ( `module1${ sep } foobar` , perm ) ;
19011901
@@ -1934,7 +1934,7 @@ test(
19341934 async t => {
19351935 process . chdir ( 'tests/individually' ) ;
19361936 const path = npm ( [ 'pack' , '../..' ] ) ;
1937- const perm = '775 ' ;
1937+ const perm = '755 ' ;
19381938 writeFileSync ( `module1${ sep } foobar` , '' , { mode : perm } ) ;
19391939 chmodSync ( `module1${ sep } foobar` , perm ) ;
19401940
You can’t perform that action at this time.
0 commit comments