Author: Pedro Lucas Porcellis <porcellis@eletrotupi.com>
doc: adding some todos
apkbuilder | 3 +++
diff --git a/apkbuilder b/apkbuilder index 81a064135588acf64cd62631971580caa25a5393..632e824fdab5bd4e522d7190e09a410587b0278f 100755 --- a/apkbuilder +++ b/apkbuilder @@ -9,10 +9,12 @@ printf "\t%s\n" "Update repository" } main_repository() { + # TODO: Define a user-configurable variable printf "%s" "$HOME/pacotes.eletrotupi.com" } pkgdir() { + # TODO: Define a user-configurable variable printf "%s/pkgs/%s" $(main_repository) $1 } @@ -46,6 +48,7 @@ update() { repositories=$(main_repository) cd "$repositories" + # TODO: Allow to pick a remote and a branch git pull origin master }