Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DojoCLI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dojo Project (HES-SO)
Projects
UI
DojoCLI
Merge requests
!8
Draft: Resolve "Add bash completion helper function"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Resolve "Add bash completion helper function"
3-add-bash-completion-helper-function
into
main
Overview
21
Commits
18
Pipelines
35
Changes
2
Closed
orestis.malaspin
requested to merge
3-add-bash-completion-helper-function
into
main
1 year ago
Overview
18
Commits
18
Pipelines
35
Changes
2
Expand
Closes
#3 (closed)
0
0
Merge request reports
Compare
main
version 16
aac13e56
1 year ago
version 15
46e3ed77
1 year ago
version 14
4d62d344
1 year ago
version 13
ce88a755
1 year ago
version 12
304e0953
1 year ago
version 11
8d09a116
1 year ago
version 10
042edc8d
1 year ago
version 9
4a879744
1 year ago
version 8
9f90dff0
1 year ago
version 7
bd773bb2
1 year ago
version 6
90e59802
1 year ago
version 5
1d08aa9f
1 year ago
version 4
5aeb4328
1 year ago
version 3
bab27e23
1 year ago
version 2
c1d910ad
1 year ago
version 1
fa102701
1 year ago
main (base)
and
version 16
latest version
51e01c50
18 commits,
1 year ago
version 16
aac13e56
17 commits,
1 year ago
version 15
46e3ed77
16 commits,
1 year ago
version 14
4d62d344
15 commits,
1 year ago
version 13
ce88a755
14 commits,
1 year ago
version 12
304e0953
13 commits,
1 year ago
version 11
8d09a116
12 commits,
1 year ago
version 10
042edc8d
10 commits,
1 year ago
version 9
4a879744
9 commits,
1 year ago
version 8
9f90dff0
8 commits,
1 year ago
version 7
bd773bb2
7 commits,
1 year ago
version 6
90e59802
6 commits,
1 year ago
version 5
1d08aa9f
5 commits,
1 year ago
version 4
5aeb4328
4 commits,
1 year ago
version 3
bab27e23
3 commits,
1 year ago
version 2
c1d910ad
2 commits,
1 year ago
version 1
fa102701
1 commit,
1 year ago
2 files
+
227
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
NodeApp/src/commander/CommanderApp.ts
+
3
−
0
Options
@@ -9,6 +9,7 @@ import { stateConfigFile } from '../config/ConfigFiles';
import
semver
from
'
semver/preload
'
;
import
{
version
}
from
'
../config/Version
'
;
import
Config
from
'
../config/Config
'
;
import
{
writeBashCompletion
}
from
'
../helpers/AutoCompletionHelper
'
;
class
CommanderApp
{
@@ -43,6 +44,8 @@ class CommanderApp {
this
.
registerCommands
();
writeBashCompletion
(
this
.
program
,
"
bash_completion.sh
"
)
this
.
program
.
parse
();
}
Loading