From 68fd8100bc36465b29ae76b9f41d9eb7fa052e7a Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Thu, 28 Nov 2019 22:26:20 +0530 Subject: [PATCH] Dropping the underscore - we're clitube now! Signed-off-by: Joseph Nuthalapati --- .gitignore | 2 +- .gitlab-ci.yml | 2 +- README.md | 12 ++++++------ cli_tube.nim => clitube.nim | 0 4 files changed, 8 insertions(+), 8 deletions(-) rename cli_tube.nim => clitube.nim (100%) diff --git a/.gitignore b/.gitignore index 3ea233a..d884fdd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -cli_tube +clitube diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b896d93..6f1c997 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,4 +9,4 @@ compile: - nim c -d:ssl -d:release cli_tube.nim artifacts: paths: - - cli_tube + - clitube diff --git a/README.md b/README.md index fd5ec9b..ef2efcf 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ unzip artifacts.zip Run the binary ```sh -./cli_tube emacs +./clitube emacs -./cli_tube 'nim lang' +./clitube 'nim lang' ``` ## Development @@ -37,14 +37,14 @@ Run the binary ### Compiling and Running ```sh -nim c -d:ssl -r cli_tube.nim emacs +nim c -d:ssl -r clitube.nim emacs # If your search query has multiple words, use quotes -nim c -d:ssl -r cli_tube.nim 'nim lang' +nim c -d:ssl -r clitube.nim 'nim lang' ``` ### Creating a release artifact ```sh -nim c -d:ssl -d:release cli_tube.nim -``` \ No newline at end of file +nim c -d:ssl -d:release clitube.nim +``` diff --git a/cli_tube.nim b/clitube.nim similarity index 100% rename from cli_tube.nim rename to clitube.nim -- 2.43.0