Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix reghdfe parallel bug:

sergiocorreia/reghdfe#236
  • Loading branch information
sergiocorreia committed Aug 21, 2023
1 parent f308660 commit 1f67d4b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/ftools.ado
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*! version 2.49.0 06may2022
*! version 2.49.1 08aug2023
* This file is just used to compile ftools.mlib

program define ftools
Expand Down
2 changes: 1 addition & 1 deletion src/ftools.pkg
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ d
d Requires: Stata version 11.2
d (Stata 12 or older also require the boottest package from ssc)
d
d Distribution-Date: 20220506
d Distribution-Date: 20230820
d

f ftools.ado
Expand Down
2 changes: 1 addition & 1 deletion src/ftools.sthlp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{smcl}
{* *! version 2.49.0 06may2022}{...}
{* *! version 2.49.1 08aug2023}{...}
{vieweralsosee "fegen" "help fegen"}{...}
{vieweralsosee "fcollapse" "help fcollapse"}{...}
{vieweralsosee "join" "help join"}{...}
Expand Down
4 changes: 2 additions & 2 deletions src/parallel_map.ado
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*! version 0.2.0 26feb2021
*! version 0.3.0 20aug2023
program define parallel_map

* Intercept -clean- option
Expand Down Expand Up @@ -249,7 +249,7 @@ program define parallel_map_inner
loc pid`val' = r(pid)
global pids $pids `pid`val''
}
else if ("`method'" == "unix-shell") {
else if ("`method'" == "unix-shell" | "`method'" == "macosx-shell") {
* PROBLEM:
* The first tells Stata to run in batch mode. Stata will execute the commands in filename.do and will automatically save the output in filename.log.
* https://www.stata.com/support/faqs/unix/batch-mode/
Expand Down

0 comments on commit 1f67d4b

Please sign in to comment.