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

phase2: update default sdk pattern to a more relaxed pattern #28

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion docker/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ source_url = upload@rsync-server::data/src
source_password = secret
sdk_url = upload@rsync-server::data/bin/targets
sdk_password = secret
sdk_pattern = openwrt-sdk-*.tar.xz
sdk_pattern = openwrt-sdk-*.tar.*

[gpg]
key = -----BEGIN PGP PRIVATE KEY BLOCK-----
Expand Down
2 changes: 1 addition & 1 deletion phase2/config.ini.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ source_url = [email protected]::upload-sources
source_password = example2
sdk_url = [email protected]::download-binary
sdk_password = example3
sdk_pattern = openwrt-sdk-*.tar.xz
sdk_pattern = openwrt-sdk-*.tar.*

[gpg]
key = -----BEGIN PGP PRIVATE KEY BLOCK-----
Expand Down
2 changes: 1 addition & 1 deletion phase2/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ if ini.has_option("rsync", "source_url"):

rsync_sdk_url = None
rsync_sdk_key = None
rsync_sdk_pat = "openwrt-sdk-*.tar.xz"
rsync_sdk_pat = "openwrt-sdk-*.tar.*"

if ini.has_option("rsync", "sdk_url"):
rsync_sdk_url = ini.get("rsync", "sdk_url")
Expand Down
Loading