Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix g calc type 1 #1228

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix bug in command line arguments parser
The option to select whether to process the Latex document into a pdf
was mistakenly searching for `eq=` rather than `latex=`
  • Loading branch information
mainegra committed Nov 28, 2024
commit a922f4aaac2de6b7a53750ce93e666106c9db6fe
2 changes: 1 addition & 1 deletion HEN_HOUSE/doc/src/pirs3100-g-app/makedoc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ while test $# -gt 0; do
dir=*) docdir=`echo $1 | sed 's/dir=//'` ;;
eh=*) eh=`echo $1 | sed 's/eh=//'` ;;
eq=*) update_eq=`echo $1 | sed 's/eq=//'` ;;
latex=*) latex_build=`echo $1 | sed 's/eq=//'` ;;
latex=*) latex_build=`echo $1 | sed 's/latex=//'` ;;
config=*) my_machine=`echo $1 | sed 's/config=//'` ;;
esac
shift
Expand Down