Skip to content
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

More changes #11

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
6b2fb7e
fix: package file for Shellcheck
BrunIF Aug 20, 2020
66c4ac1
Added one-line installation
BrunIF Aug 20, 2020
d99097e
Fix intallation script and requirements.
BrunIF Aug 20, 2020
e140cfd
Merge pull request #1 from BrunIF/install
BrunIF Aug 20, 2020
8e58811
Delete old files befor install
BrunIF Aug 20, 2020
f407169
Merge pull request #2 from BrunIF/install
BrunIF Aug 20, 2020
4745b02
Shellcheck fix uninstall script
BrunIF Sep 7, 2020
2a8cc83
Change install script from bcl.json
BrunIF Sep 7, 2020
9038309
Merge pull request #3 from BrunIF/install
BrunIF Sep 7, 2020
3f80f5c
fix: Package installation from json
BrunIF Sep 7, 2020
5118622
fix: README file
BrunIF Sep 7, 2020
8528d84
Create shellcheck.yml
BrunIF Sep 7, 2020
37fd997
fix: Delete obsolate info
BrunIF Sep 7, 2020
7792168
Merge branch 'master' of github.com:BrunIF/bcl
BrunIF Sep 7, 2020
0a1924e
fix: cli scripts
BrunIF Sep 7, 2020
42f01b9
fix: shellcheck
BrunIF Sep 7, 2020
58da466
fix: shellcheck
BrunIF Sep 7, 2020
dd3bf2c
fix: shellcheck
BrunIF Sep 7, 2020
6bd8f6c
fix: shellcheck
BrunIF Sep 7, 2020
2895152
fix: Installed BCL to user home folder
BrunIF Sep 7, 2020
6cbf861
Merge pull request #5 from BrunIF/install
BrunIF Sep 7, 2020
1146c00
fix: install error
BrunIF Sep 7, 2020
ed02f39
Merge pull request #6 from BrunIF/install
BrunIF Sep 7, 2020
01644e3
Reload BASH after install BCL
BrunIF Sep 7, 2020
19ff482
Merge branch 'master' of github.com:BrunIF/bcl into shellcheck
BrunIF Sep 7, 2020
3b6ce97
fix: shellcheck
BrunIF Sep 7, 2020
483e7b0
fix: shellcheck
BrunIF Sep 7, 2020
5760242
Compact view for help
BrunIF Sep 7, 2020
260d497
Merge pull request #4 from BrunIF/shellcheck
BrunIF Sep 7, 2020
0b44295
fix: BASH completion
BrunIF Sep 8, 2020
89e5f09
fix: Minimal BASH version check
BrunIF Sep 11, 2020
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
fix: Minimal BASH version check
  • Loading branch information
BrunIF committed Sep 11, 2020
commit 89e5f09afe0042dd5adbbfc6a87d53ae92f5904c
2 changes: 1 addition & 1 deletion install
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ check_requirenmets_app "unzip"
check_requirenmets_app "curl"
check_requirenmets_app "jq"

if [[ "${BASH_VERSINFO[0]}" -gt 4 ]]; then
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
echo "[*] BASH version is higher 4"
else
echo "[ ] BASH version need update"