Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ Compiling

Update library dependencies::

dylan update
deft update

Build the library, tests and demo with::

dylan build --all
deft build --all

Run the demo::

Expand Down
4 changes: 2 additions & 2 deletions dylan-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "command-interface",
"description": "Interactive command interface system for Dylan",
"description": "Interactive command interface system",
"keywords": [ "command-line" ],
"version": "0.1.2",
"version": "0.1.3",
"url": "https://github.com/dylan-lang/command-interface",
"category" : "utilities",
"contact": "[email protected]",
Expand Down
6 changes: 1 addition & 5 deletions tests/command-interface-test.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,4 @@ define test command-tokenizer-test()
#(0, 2, 3, 5, 7, 9, 10));
end;

define suite command-interface-test-suite()
test command-tokenizer-test;
end;

run-test-application(command-interface-test-suite);
run-test-application();
Loading