File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3
3
"version" : " 0.0.7" ,
4
4
"license" : " BSD-3-Clause" ,
5
5
"files" : [
6
+ " /postinstall.js" ,
6
7
" /rewatch" ,
7
8
" /rewatch.cmd" ,
8
9
" /rewatch-linux" ,
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const installMacLinuxBinary = (binary) => {
9
9
const target = path . join ( __dirname , "rewatch" ) ;
10
10
fs . renameSync ( source , target ) ;
11
11
12
- // The ppx should be executable in the bundle, but just in case
12
+ // The binary should be executable in the bundle, but just in case
13
13
fs . chmodSync ( target , 0777 ) ;
14
14
} else {
15
15
// assume we're in dev mode - nothing will break if the script
@@ -44,7 +44,7 @@ switch (process.platform) {
44
44
installWindowsBinary ( ) ;
45
45
break ;
46
46
default :
47
- // This won't break the installation because the `ppx` shell script remains
47
+ // This won't break the installation because the shell script remains
48
48
// but that script will throw an error in this case anyway
49
49
console . warn ( `No release available for "${ process . platform } "` ) ;
50
50
process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments