diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-02-08 17:31:33 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2007-02-08 17:31:33 +0000 |
commit | 8d12f60f19e30d46b0dfbbd8415809b31a7f4075 (patch) | |
tree | 4bbf72d10ffa1abc52d2e0d5975a0f0872ea3965 /src | |
parent | 27cbd9af36b19994e0f17ba5273b327d77e7ba5f (diff) | |
download | simplepkg-8d12f60f19e30d46b0dfbbd8415809b31a7f4075.tar.gz simplepkg-8d12f60f19e30d46b0dfbbd8415809b31a7f4075.tar.bz2 |
small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@157 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'src')
-rwxr-xr-x | src/simplaret | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/simplaret b/src/simplaret index a1ab83c..f306a11 100755 --- a/src/simplaret +++ b/src/simplaret @@ -185,13 +185,13 @@ function simplaret_repository_name { elif echo $repository | grep -qe %; then repository_name="`echo $repository | cut -d % -f 1`" if [ -z "$repository_name" ]; then - echo you should set a name for the repository $repository - echo please correct your $REPOS_CONF + echo $BASENAME: you should set a name for the repository $repository + echo $BASENAME: please correct your $REPOS_CONF exit 1 fi else - echo you should set a name for the repository $repository - echo please correct your $REPOS_CONF + echo $BASENAME: you should set a name for the repository $repository + echo $BASENAME: please correct your $REPOS_CONF exit 1 fi @@ -204,13 +204,13 @@ function simplaret_repository_url { if echo $repository | grep -qe %; then repository_url="`echo $repository | cut -d % -f 2`" if [ -z "$repository_url" ]; then - echo you should set a url for the repository $repository - echo please correct your $REPOS_CONF + echo $BASENAME: you should set a url for the repository $repository + echo $BASENAME: please correct your $REPOS_CONF exit 1 fi else - echo you should set a url for the repository $repository - echo please correct your $REPOS_CONF + echo $BASENAME: you should set a url for the repository $repository + echo $BASENAME: please correct your $REPOS_CONF exit 1 fi |