8000 Copy installation files on startup by graetzer · Pull Request #6491 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Copy installation files on startup #6491

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

Merged
merged 8 commits into from
Sep 14, 2018
Merged
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
keep copy-directory hidden
  • Loading branch information
graetzer committed Sep 13, 2018
commit a20e65a0f9fbb457615e293aa70cffb757be2255
6 changes: 3 additions & 3 deletions arangosh/Shell/V8ShellFeature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ void V8ShellFeature::collectOptions(std::shared_ptr<ProgramOptions> options) {
"startup paths containing the Javascript files",
new StringParameter(&_startupDirectory));

options->addOption("--javascript.client-module",
"client module to use at startup",
new StringParameter(&_clientModule));
options->addHiddenOption("--javascript.client-module",
"client module to use at startup",
new StringParameter(&_clientModule));

options->addOption("--javascript.copy-directory",
"client module to use at startup",
Expand Down
0