Bug 1421062: Use `nightly-desktop` as cron task name; r=me
The taskcluster scopes are designed with a cron task name prefix of `nightly-`
so use that.
#!/bin/sh
case "$MOZ_BUILD_APP" in
*comm*)
# we are building with comm/ as the subdirectory
# $srcdir is the mozilla repo, comm is in the subdir
moztopsrcdir=$srcdir
commtopsrcdir=$srcdir/comm
mozreltopsrcdir=.
commreltopsrcdir=comm
commtopobjdir=$_objdir/comm
;;
*)
# we are building with mozilla/ as the subdirectory
# $srcdir is still the mozilla repo, so use the parent for comm
moztopsrcdir=$srcdir
commtopsrcdir=$srcdir/..
mozreltopsrcdir=mozilla
commreltopsrcdir=.
commtopobjdir=$_objdir
;;
esac