Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build-webos-desktop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ do_fetch() {

fi

ZIPFILE="${BASE}/tarballs/`basename ${1}`_${2}.zip"
ZIPFILE="${BASE}/tarballs/`basename ${1}`_${2//\//_}.zip"

# if building from a tag, remove any cached "master" zipball to force it to be re-fetched
if [ "${2}" != "master" ] ; then
Expand Down Expand Up @@ -1394,14 +1394,14 @@ function build
BUILD_DIR=$1
fi
if [ $SKIPSTUFF -eq 0 ] || [ ! -d $BASE/$BUILD_DIR ] || \
[ ! -e $BASE/$BUILD_DIR/luna-desktop-build-$2.stamp ] ; then
[ ! -e $BASE/$BUILD_DIR/luna-desktop-build-${2//\//_}.stamp ] ; then
echo
echo "Building ${BUILD_DIR} ..."
echo
time build_$1 $2 $3 $4
echo
if [ -d $BASE/$BUILD_DIR ] ; then
touch $BASE/$BUILD_DIR/luna-desktop-build-$2.stamp
touch $BASE/$BUILD_DIR/luna-desktop-build-${2//\//_}.stamp
fi
return
fi
Expand Down