Skip to content

Commit

Permalink
don't add to helpdb var if no helpdb.mip (sqiid/upsqiid)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjfitzpatrick authored and olebole committed Mar 5, 2024
1 parent e962213 commit 6910229
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 6910229

Please sign in to comment.