Skip to content
Snippets Groups Projects
Commit f339cb76 authored by David Trudgian's avatar David Trudgian
Browse files

Fix repl function splitting args

parent 6f798175
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ PACKAGE=$(echo $0 |/bin/sed s/make-//g)
export DATE=$(date +'%a, %d %b %Y %T %z')
export DATA=$PWD/DATA/$PACKAGE
export DATA="$PWD/DATA/$PACKAGE"
if ! [ 1$COMPONENT = "1main" ]
then
COMPONENT=${COMPONENT:-universe}
......@@ -50,9 +50,9 @@ DEVELMIRROR=http://devel.trisquel.info/trisquel/$CODENAME
LOCALMIRROR=http://archive.trisquel.info/trisquel
LOCAL_APT=`mktemp -d`
export RPL=$PWD/DATA/rpl
export RPL="$PWD/DATA/rpl"
rpl(){
$RPL $@
$RPL "$@"
}
pkgversion(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment