Skip to content

Commit

Permalink
Minor cleanup in the Subito GNU/Linux support files
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Aug 25, 2012
1 parent 5866ad9 commit 4068b97
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion distro/subito/convert_package_list
Expand Up @@ -2,4 +2,4 @@

# usage: convert_package_list $package_list $repository_name

cat "$1"
exec cat "$1"
12 changes: 12 additions & 0 deletions distro/subito/parameters
Expand Up @@ -4,6 +4,18 @@
# the distribution version
VERSION="2"

case $DISTRO_ARCH in
amd64|x86_64)
arch="x86_64"
;;
x86|i?86)
arch="i686"
;;
arm*)
arch="armv6"
;;
esac

# repositories - package list URL|repository name
REPOSITORIES="http://www.dimakrasner.com/subito/$DISTRO_ARCH/subito-$VERSION|subito-official"

This comment has been minimized.

Copy link
@noryb009

noryb009 Aug 26, 2012

Contributor

Shouldn't this be:

REPOSITORIES="http://www.dimakrasner.com/subito/$arch/subito-$VERSION|subito-official"

This comment has been minimized.

Copy link
@dimkr

dimkr Aug 30, 2012

Author Owner

You're absolutely right - fixed.

Thank you very much for reporting.


Expand Down

0 comments on commit 4068b97

Please sign in to comment.