Skip to content

Commit

Permalink
Merge pull request #378 from olebole/check-helpdb-mip
Browse files Browse the repository at this point in the history
Don't add to helpdb var if no helpdb.mip (sqiid/upsqiid)
  • Loading branch information
olebole committed Mar 11, 2024
2 parents e962213 + 6910229 commit 56f012d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions unix/hlib/extpkg.cl
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ while (fscan (list, s1) != EOF) {
printf ("task %s.pkg = %s$%s.cl\nkeep\n", s1, s1, s1) | cl ()

# Add to the helpdb string.
printf ("reset helpdb=%s,%s$lib/helpdb.mip\nkeep\n",
envget("helpdb"), s1) | cl ()
if (access (s1//"/"//"lib/helpdb.mip") == yes) {
printf ("reset helpdb=%s,%s$lib/helpdb.mip\nkeep\n",
envget("helpdb"), s1) | cl ()
}
;
}
;
}
Expand Down

0 comments on commit 56f012d

Please # to comment.