diff --git a/src/bin/gpkg b/src/bin/gpkg index d009451..c19e6d9 100755 --- a/src/bin/gpkg +++ b/src/bin/gpkg @@ -107,7 +107,7 @@ get_pkg_sources() { pkgs=("${@}") for i in /opt/glacier/workspace/*; do source ${i} - ${i} getsource + getsource done } @@ -115,8 +115,8 @@ install_pkg() { pkgs=("${@}") for i in /opt/glacier/workspace/*; do source ${i} - ${i} buildpkg - ${i} installpkg + buildpkg + installpkg done } @@ -124,7 +124,7 @@ update_pkg() { pkgs=("${@}") for i in /opt/glacier/workspace/*; do source ${i} - ${i} updatepkg + updatepkg done } @@ -132,7 +132,7 @@ remove_pkg() { pkgs=("${@}") for i in /opt/glacier/workspace/*; do source ${i} - ${i} removepkg + removepkg done }