Skip to content

Commit

Permalink
fix(Style): fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fjcaetano committed Jul 16, 2019
1 parent 684c8c4 commit 70cbedb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions bin/ios-simulator-gif
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ record() {
### Convert GIF ###
#######################
convert_gif() {
echo "Converting and saving to ${FILE_NAME}\n"
ffmpeg -i /tmp/simulator.mov -vf $VIDEOFILTER -r $RATE -f $FORMAT -y $FILE_NAME $EXTRA &> /tmp/ffmpeg.log
echo "Converting and saving to ${FILE_NAME}\n"
ffmpeg -i /tmp/simulator.mov -vf $VIDEOFILTER -r $RATE -f $FORMAT -y $FILE_NAME $EXTRA &> /tmp/ffmpeg.log

if [[ $? -eq 0 ]]; then
echo "Gif saved to ${FILE_NAME}"
else
cat /tmp/ffmpeg.log
fi
if [[ $? -eq 0 ]]; then
echo "Gif saved to ${FILE_NAME}"
else
cat /tmp/ffmpeg.log
fi
}


Expand Down

0 comments on commit 70cbedb

Please sign in to comment.