Manno15 opened a new issue #275:
URL: https://github.com/apache/fluo-uno/issues/275
Currently, the command `uno setup accumulo --no-deps` will fail setup due to
the `--no-deps` arg being in a different position than expected for
`run/accumulo.sh`. The script expects $1 (like how it is inside
`install/accumulo.sh`) but this script reads the position of `--no-deps` at $2.
The simple fix is to change `run/accumulo.sh` to expect the arg to be in $2 but
I suspect there might be a bug as to why each script reads the position as
something different. A small test is below to visually show the issue,
Here is an example of the command being run with $1 being printed to
console:
```
jeffrey@groot: uno setup accumulo --no-deps
Setting up accumulo (detailed logs in
/home/jeffrey/git/fluo-uno/install/logs/setup)...
what is at arg1 in install/accumulo.sh: --no-deps
Installing Apache Accumulo 2.1.0-SNAPSHOT at
/home/jeffrey/git/fluo-uno/install/accumulo-2.1.0-SNAPSHOT
what is at arg1 at run/accumulo.sh: accumulo
Setup of accumulo failed!
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]