-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdesktop.sh
More file actions
44 lines (38 loc) · 1.19 KB
/
desktop.sh
File metadata and controls
44 lines (38 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
# N.B.: yargs doesn't parse `--firefox.android.intentArgument --ez`
# properly, so always use `=--ez`!
BASE='/home/jesup/src/mozilla/browsertime_on_android_scripts/'
#$BROWSERTIME_BIN \
# --browser firefox \
#N --skipHar \
# --firefox.binaryPath=/home/jesup/src/mozilla/pageload/obj-opt/dist/bin/firefox \
if test $PERF; then
SCRIPT=${BASE}perf.sh
else
SCRIPT=$FIREFOX_BINARY_LOCATION
fi
echo ./mach browsertime \
--firefox.binaryPath=\'"$SCRIPT"\' \
"$@"
./mach browsertime \
--firefox.binaryPath=\'"$SCRIPT"\' \
"$@"
#!/bin/bash
# N.B.: yargs doesn't parse `--firefox.android.intentArgument --ez`
# properly, so always use `=--ez`!
BASE='/home/jesup/src/mozilla/browsertime_on_android_scripts/'
#$BROWSERTIME_BIN \
# --browser firefox \
#N --skipHar \
# --firefox.binaryPath=/home/jesup/src/mozilla/pageload/obj-opt/dist/bin/firefox \
if test $PERF; then
SCRIPT=${BASE}perf.sh
else
SCRIPT=$FIREFOX_BINARY_LOCATION
fi
echo ./mach browsertime \
--firefox.binaryPath=\'"$SCRIPT"\' \
"$@"
./mach browsertime \
--firefox.binaryPath=\'"$SCRIPT"\' \
"$@"