Skip to content

Commit 5e3ce0e

Browse files
author
hastmu
committed
update
1 parent 93fefc0 commit 5e3ce0e

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Issues:
3333
What do you get?
3434
- [X] branch v1.0.0 (released)
3535
- [X] Proxy detection via
36-
- avahi
37-
- set defaults
36+
- [X] avahi
37+
- [X] set defaults
3838
- [X] caching of URL specific working proxy (or none if none works)
3939
- [X] caching over reboot if possible
4040
- [X] allow mixture of allowed and non allowed urls (no need for direct declaration)

README.md.template

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Issues:
3333
What do you get?
3434
- [X] branch v1.0.0 (released)
3535
- [X] Proxy detection via
36-
- avahi
37-
- set defaults
36+
- [X] avahi
37+
- [X] set defaults
3838
- [X] caching of URL specific working proxy (or none if none works)
3939
- [X] caching over reboot if possible
4040
- [X] allow mixture of allowed and non allowed urls (no need for direct declaration)
@@ -145,14 +145,14 @@ All packages are up to date.
145145

146146
So the quickest way is:
147147
```
148-
curl -s https://raw.githubusercontent.com/hastmu/apt-proxy-detect/refs/heads/@branch@/install.deb.sh | sudo BRANCH=@branch@ bash
148+
curl -s https://raw.githubusercontent.com/hastmu/apt-proxy-detect/refs/heads/main/install.deb.sh | sudo BRANCH=main bash
149149
```
150150

151151
looks like
152152

153153
```
154-
dev@dev~#> curl -s https://raw.githubusercontent.com/hastmu/apt-proxy-detect/refs/heads/@branch@/install.deb.sh | sudo BRANCH=@branch@ bash
155-
- BRANCH [@branch@]
154+
dev@dev~#> curl -s https://raw.githubusercontent.com/hastmu/apt-proxy-detect/refs/heads/main/install.deb.sh | sudo BRANCH=main bash
155+
- BRANCH [main]
156156
- downloading ... ok.
157157
dpkg-deb: building package 'apt-proxy-detect' in 'apt-proxy-detect_1.0.0_1730626377.deb'.
158158
Reading package lists... Done

deploy-deb.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/bin/bash
22

33
echo "- deploying..."
4+
# shellcheck disable=SC1091
45
source .include.common.sh
56

67
(
7-
cd "$(dirname "$0")"
8+
cd "$(dirname "$0")" || exit
89
pwd
910
# git branch -r -v
1011
GIT_CLONE_URL=$(git ls-remote --get-url origin)

0 commit comments

Comments
 (0)