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

bin/verticapylab missed the declaration for the argument v as the info of usage #243

Closed
dingqiangliu opened this issue Apr 7, 2024 · 2 comments

Comments

@dingqiangliu
Copy link

The script bin/verticapylab is missed the declaration for the argument v as the info of usage.

while getopts "p:c:i:h" opt; do

Here is a suggestion fix:

diff --git a/bin/verticapylab b/bin/verticapylab
index 643ecee..b81b078 100755
--- a/bin/verticapylab
+++ b/bin/verticapylab
@@ -31,7 +31,7 @@ function usage {
     exit 1
 }

-while getopts "p:c:i:h" opt; do
+while getopts "p:c:v:i:h" opt; do
     case ${opt} in
         h)
             usage
@roypaulin
Copy link
Collaborator

Hi @dingqiangliu , I will address it this week with other issues you brought up.

@roypaulin
Copy link
Collaborator

#245

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants