Skip to content

Commit

Permalink
api: add_external_repo switch order of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed Dec 28, 2023
1 parent e523164 commit bc8e2a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,8 @@ app_to_pkgname() { #given an app-name, convert it to a unique, valid package-nam
}

add_external_repo() { # add an external apt repo and its gpg key. follows https://wiki.debian.org/DebianRepository/UseThirdParty specification
local repopath="$1"
local reponame="$2"
local reponame="$1"
local repopath="$2"
local suite="$3"
local component="$4"
local pubkeyurl="$5"
Expand Down

0 comments on commit bc8e2a2

Please sign in to comment.