Skip to content

Commit 58c406a

Browse files
committed
Split src and exutable into different file
1 parent f3a3ebc commit 58c406a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ git clone https://github.com/arunvelsriram/lazy-connect.git ~/.lazy-connect
1919

2020
```
2121
# zsh users
22-
echo "[ -f ~/.lazy-connect/lazy-connect.sh ] && source ~/.lazy-connect/lazy-connect.sh" >> ~/.zshrc
22+
echo "[ -f ~/.lazy-connect/src.sh ] && source ~/.lazy-connect/src.sh" >> ~/.zshrc
2323
source ~/.zshrc
2424
```
2525

2626
```
2727
# bash users
28-
echo "[ -f ~/.lazy-connect/lazy-connect.sh ] && source ~/.lazy-connect/lazy-connect.sh" >> ~/.bashrc
28+
echo "[ -f ~/.lazy-connect/src.sh ] && source ~/.lazy-connect/src.sh" >> ~/.bashrc
2929
source ~/.bashrc
3030
```
3131

lazy-connect

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env bash
2+
3+
source ./src.sh
4+
5+
lazy-connect "$@"

lazy-connect.sh renamed to src.sh

File renamed without changes.

0 commit comments

Comments
 (0)