Fix shellcheck issue on local-recording.sh
This commit is contained in:
parent
2343c5ec9a
commit
6bec767808
1 changed files with 2 additions and 2 deletions
|
|
@ -12,8 +12,8 @@ mkdir -p /data/local/tmp/recordings;
|
||||||
FILENAME=/data/local/tmp/recordings/testRecording$COUNT.mp4
|
FILENAME=/data/local/tmp/recordings/testRecording$COUNT.mp4
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
((COUNT++))
|
COUNT=$((COUNT+1))
|
||||||
FILENAME=/data/local/tmp/recordings/testRecording$COUNT.mp4
|
FILENAME=/data/local/tmp/recordings/testRecording$COUNT.mp4
|
||||||
echo "\nRecording video file #$COUNT"
|
printf "\nRecording video file #%d\n" $COUNT
|
||||||
screenrecord --bugreport --bit-rate=16m --size 720x1280 $FILENAME
|
screenrecord --bugreport --bit-rate=16m --size 720x1280 $FILENAME
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue