Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Commit

Permalink
Rename helics_cli to helics
Browse files Browse the repository at this point in the history
  • Loading branch information
kdheepak committed May 7, 2020
1 parent 3e1b4e4 commit b942e0f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/pi-exchange/runner.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
},
{
"directory": "../../",
"exec": "./bin/helics_cli hook --federates 6",
"exec": "./bin/helics hook --federates 6",
"host": "localhost",
"name": "hook"
}
Expand Down
4 changes: 2 additions & 2 deletions helics_cli.nimble → helics.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "HELICS command line interface"
license = "MIT"
srcDir = "src"
binDir = "bin"
bin = @["helics_cli"]
bin = @["helics"]

# Dependencies

Expand All @@ -21,7 +21,7 @@ import os
import strformat

task archive, "Create archived assets":
let app = "helics_cli"
let app = "helics"
let assets = &"{app}_{buildOS}"
let dir = "dist"/assets
mkDir dir
Expand Down
2 changes: 1 addition & 1 deletion src/helics_cli.nim → src/helics.nim
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ proc serve(): int =
when isMainModule:
import cligen
include cligen/mergeCfgEnv
const nd = staticRead "../helics_cli.nimble"
const nd = staticRead "../helics.nimble"
clCfg.version = nd.fromNimble("version")
dispatchMulti(
[ run, noAutoEcho=true ],
Expand Down

0 comments on commit b942e0f

Please sign in to comment.